forked from MagicStack/asyncpg
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (85 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
93 lines (85 loc) · 2.2 KB
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
[project]
name = "async_gaussdb"
description = "An asyncio GaussDB driver"
requires-python = '>=3.8.0'
readme = "README.rst"
license = {text = "Apache-2.0"}
dynamic = ["version"]
keywords = [
"database",
"gaussdb",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database :: Front-Ends",
]
dependencies = [
'async_timeout>=4.0.3; python_version < "3.11.0"',
]
[project.urls]
github = "https://github.com/HuaweiCloudDeveloper/gaussdb-python-async"
[project.optional-dependencies]
gssauth = [
'gssapi; platform_system != "Windows"',
'sspilib; platform_system == "Windows"',
]
docs = [
'Sphinx~=8.1.3',
'sphinx_rtd_theme>=1.2.2',
]
[build-system]
requires = [
"setuptools>=60",
"wheel",
"Cython(>=0.29.24,<4.0.0)"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
include = ["async_gaussdb", "async_gaussdb.*"]
[tool.setuptools.exclude-package-data]
"*" = ["*.c", "*.h"]
[tool.mypy]
exclude = [
"^.eggs",
"^.github",
"^.vscode",
"^build",
"^dist",
"^docs",
"^tests",
]
incremental = true
strict = true
implicit_reexport = true
[[tool.mypy.overrides]]
module = [
"async_gaussdb._testbase",
"async_gaussdb._testbase.*",
"async_gaussdb.cluster",
"async_gaussdb.connect_utils",
"async_gaussdb.connection",
"async_gaussdb.connresource",
"async_gaussdb.cursor",
"async_gaussdb.exceptions",
"async_gaussdb.exceptions.*",
"async_gaussdb.pool",
"async_gaussdb.prepared_stmt",
"async_gaussdb.transaction",
"async_gaussdb.utils",
]
ignore_errors = true