-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (64 loc) · 2.2 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
[tool.poetry]
name = "generic-connection-pool"
version = "0.7.0"
description = "generic connection pool"
authors = ["Dmitry Pershin <[email protected]>"]
license = "Unlicense"
readme = "README.rst"
homepage = "https://github.com/dapper91/generic-connection-pool"
repository = "https://github.com/dapper91/generic-connection-pool"
documentation = "https://generic-connection-pool.readthedocs.io"
keywords = ['pool', 'connection-pool', 'asyncio', 'socket', 'tcp']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: Public Domain",
"Operating System :: OS Independent",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.9"
psycopg2 = {version = ">=2.9.5", optional = true}
asyncpg = {version = "^0.29.0", optional = true}
furo = {version = "^2023.7.26", optional = true}
Sphinx = {version = "^6.2.1", optional = true}
sphinx_design = {version = "^0.5.0", optional = true}
toml = {version = "^0.10.2", optional = true}
sphinx-copybutton = {version = "^0.5.2", optional = true}
[tool.poetry.extras]
psycopg2 = ["psycopg2"]
asyncpg = ["asyncpg"]
docs = ['Sphinx', 'sphinx_design', 'sphinx-copybutton', 'furo', 'toml']
[tool.poetry.dev-dependencies]
pre-commit = "^3.3.3"
mypy = "^1.4.1"
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"
types-psycopg2 = "^2.9.21"
pytest-timeout = "^2.1.0"
asyncpg-stubs = {version = "^0.29.0", python = ">=3.9,<4.0"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
allow_redefinition = true
disallow_incomplete_defs = true
disallow_any_generics = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_unused_ignores = true