-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (62 loc) · 1.73 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
normalize = true
[project]
name = "arango_datasets"
description = "Package for fetching and loading datasets for ArangoDB deployments."
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.8"
authors = [{name = "Christopher Woodward", email = "[email protected]"}]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = ["python-arango>=7.4.1", "requests>=2.28.1", "rich>=12.6.0"]
[project.optional-dependencies]
dev = [
"bandit>=1.7.4",
"black>=22.10.0",
"flake8>=5.0.4",
"Flake8-pyproject",
"isort>=5.10.1",
"mypy>=0.982",
"pre-commit>=2.20.0",
"pytest>=7.1.3",
"pytest-cov>=4.0.0",
"sphinx>=5.3.0",
"types-requests>=2.28.11.2",
"types-setuptools>=65.5.0.1",
]
[project.urls]
"Homepage" = "https://github.com/arangoml/arangodb_datasets"
[tool.setuptools]
packages = ["arango_datasets"]
[tool.pytest.ini_options]
addopts = "-s -vv"
minversion = "6.0"
testpaths = ["tests"]
[tool.coverage.report]
omit = ["*tests*"]
[tool.coverage.run]
omit = ["*tests*"]
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503", "E251"]
exclude = [".git", ".idea", ".*_cache", "dist", "venv"]
[tool.mypy]
strict = true
ignore_missing_imports = true
implicit_reexport = true
scripts_are_modules = true
follow_imports = "skip"
disallow_subclassing_any = false
disallow_untyped_decorators = false