-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
95 lines (82 loc) · 2.58 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "aiohttp-sqlalchemy"
packages = [{include = "aiohttp_sqlalchemy", from = "src" }]
version = "1.1.0"
description = "SQLAlchemy 2.0 support for aiohttp."
license = "MIT"
authors = [
"Ruslan Ilyasovich Gilfanov <[email protected]>",
]
maintainers = [
"Ruslan Ilyasovich Gilfanov <[email protected]>",
]
readme = "README.rst"
homepage = "https://pypi.org/project/aiohttp-sqlalchemy/"
repository = "https://github.com/ri-gilfanov/aiohttp-sqlalchemy"
documentation = "https://aiohttp-sqlalchemy.readthedocs.io/"
keywords = ["aiohttp", "sqlalchemy", "asyncio"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: aiohttp",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.9"
aiohttp-things = "^1.1.0"
sqlalchemy-things = "^1.1.0"
aiomysql = { version = ">=0.2.0,<1", optional = true }
aiosqlite = { version = ">=0.20.0,<1", optional = true }
asyncpg = { version = ">=0.30.0,<1", optional = true }
[tool.poetry.extras]
mysql = ["aiomysql"]
postgresql = ["asyncpg"]
sqlite = ["aiosqlite"]
[tool.poetry.dev-dependencies]
aiomysql = ">=0.2.0,<1"
aiosqlite = ">=0.20.0,<1"
asyncpg = ">=0.30.0,<1"
mypy = ">=1.13.0"
pytest = ">=8.3.4"
pytest-cov = ">=6.0.0"
ruff = '>=0.8.2'
sphinx = ">=7.4.7"
sphinx_rtd_theme = ">=3.0.2"
tomli = { version = "^2.2.1", optional = true, python = "~3.9 || ~3.10" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = ["src", "tests"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN401", "COM812", "D", "FA102", "ISC001", "N803", "N806", "PGH003", "PLR2004",
"RUF001", "RUF002", "RUF003", "RUF012", "Q000",
]
[tool.ruff.lint.extend-per-file-ignores]
"docs/*.py" = ["A001", "INP001"]
"examples/*.py" = ["ANN"]
"tests/*.py" = ["PLR2004", "S101"]
[tool.ruff.lint.mccabe]
max-complexity = 5
[tool.ruff.lint.pylint]
max-args = 5