-
Notifications
You must be signed in to change notification settings - Fork 74
/
pyproject.toml
93 lines (80 loc) · 2.11 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
normalize = true
[project]
name = "python-arango"
description = "Python Driver for ArangoDB"
authors = [ {name= "Joohwan Oh", email = "joohwan.oh@outlook.com" }]
maintainers = [
{name = "Joohwan Oh", email = "joohwan.oh@outlook.com"},
{name = "Alexandru Petenchea", email = "alex.petenchea@gmail.com"},
{name = "Anthony Mahanna", email = "anthony.mahanna@arangodb.com"}
]
keywords = ["arangodb", "python", "driver"]
readme = "README.md"
dynamic = ["version"]
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Documentation :: Sphinx",
"Typing :: Typed",
]
dependencies = [
"urllib3>=1.26.0",
"requests",
"requests_toolbelt",
"PyJWT",
"setuptools>=42",
"importlib_metadata>=4.7.1",
"packaging>=23.1",
]
[project.optional-dependencies]
dev = [
"black>=22.3.0",
"flake8>=4.0.1",
"isort>=5.10.1",
"mypy>=0.942",
"mock",
"pre-commit>=2.17.0",
"pytest>=7.1.1",
"pytest-cov>=3.0.0",
"sphinx",
"sphinx_rtd_theme",
"types-requests",
"types-setuptools",
]
[tool.setuptools.package-data]
"arango" = ["py.typed"]
[project.urls]
homepage = "https://github.com/arangodb/python-arango"
[tool.setuptools]
packages = ["arango"]
[tool.pytest.ini_options]
addopts = "-s -vv -p no:warnings"
minversion = "6.0"
testpaths = ["tests"]
[tool.coverage.run]
omit = [
"arango/version.py",
"arango/formatter.py",
"setup.py",
]
[tool.isort]
profile = "black"
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
strict = true