-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (81 loc) · 2.21 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
normalize = true
[project]
name = "python-arango-async"
description = "Async Python Driver for ArangoDB"
authors = [
{name= "Alexandru Petenchea", email = "[email protected]" },
{name = "Anthony Mahanna", email = "[email protected]"}
]
maintainers = [
{name = "Alexandru Petenchea", email = "[email protected]"},
{name = "Anthony Mahanna", email = "[email protected]"}
]
keywords = ["arangodb", "python", "driver", "async"]
readme = "README.md"
dynamic = ["version"]
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation :: Sphinx",
"Typing :: Typed",
]
dependencies = [
"packaging>=23.1",
"setuptools>=42",
"aiohttp>=3.9",
"multidict>=6.0",
"PyJWT>=2.8.0",
]
[tool.setuptools.dynamic]
version = { attr = "arangoasync.__version__" }
[project.optional-dependencies]
dev = [
"black>=24.2",
"flake8>=7.0",
"isort>=5.10",
"mypy>=1.10",
"pre-commit>=3.7",
"pytest>=8.2",
"pytest-asyncio>=0.23.8",
"pytest-cov>=5.0",
"sphinx>=7.3",
"sphinx_rtd_theme>=2.0",
"types-setuptools",
]
[tool.setuptools.package-data]
"arangoasync" = ["py.typed"]
[project.urls]
homepage = "https://github.com/arangodb/python-arango-async"
[tool.setuptools]
packages = ["arangoasync"]
[tool.pytest.ini_options]
addopts = "-s -vv -p no:warnings"
minversion = "6.0"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[tool.coverage.run]
omit = [
"arangoasync/version.py",
"setup.py",
]
[tool.isort]
profile = "black"
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
strict = true