-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (69 loc) · 1.86 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
authors = [{ name = "Rafał Krupiński", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
]
description = "Python async OpenAPI client library"
dynamic = ["dependencies"]
license = "MIT"
name = "lapidary"
readme = "Readme.md"
requires-python = ">=3.9"
version = "0.12.3"
[project.urls]
Homepage = "https://lapidary.dev/"
Changelog = "https://github.com/python-lapidary/lapidary/blob/develop/ChangeLog.md"
[tool.poetry]
packages = [{ include = "lapidary", from = "src" }]
[tool.poetry.dependencies]
python = "^3.9"
httpx = { extras = ["http2"], version = "^0.28" }
httpx-auth = "^0.23"
pydantic = "^2"
python-mimeparse = "^2"
typing-extensions = "^4.9"
[tool.poetry.group.dev.dependencies]
pytest = "^8"
pytest-asyncio = "^0.25"
starlette = "^0.46"
pre-commit = "^4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
pythonpath = [
"src",
"tests"
]
addopts = "--color=yes"
[tool.mypy]
mypy_path = "src"
namespace_packages = true
python_version = "3.9"
packages = ["lapidary.runtime"]
[tool.ruff]
target-version = "py39"
line-length = 140
[tool.ruff.lint]
#extend-select = ["E501", "E4", "E7", "E9", "F", "B", 'UP', 'D']
select = ['F', 'E', 'W', 'C90', 'I', 'UP']
ignore = ['F842']
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["lapidary.runtime"]
known-local-folder = ["src"]