-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
86 lines (78 loc) · 2.3 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
[tool.poetry]
authors = [
"Michael Aydinbas <[email protected]>",
"Ariz Weber <[email protected]>",
"CorrelAid <[email protected]>",
"Daniel Pleus <[email protected]>",
"Felix Schmitz <[email protected]>",
"Frederik Hering <[email protected]>",
"Marco Hübner <[email protected]>",
"Jonas Berger <[email protected]>",
]
maintainers = ["Michael Aydinbas <[email protected]>"]
description = "Python wrapper for GENESIS web service interface (API) of the Federal Statistical Office."
name = "pystatis"
version = "0.3.3"
readme = "README.md"
repository = "https://github.com/CorrelAid/pystatis"
documentation = "https://correlaid.github.io/pystatis/"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.27.1"
pandas = "^2.0"
tabulate = "^0.9.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.4"
black = "^24.0.0"
flake8 = "^7.0.0"
flake8-docstrings = "^1.6.0"
isort = "^5.10.1"
jupyter = "^1.0.0"
jupytext = "^1.16.1"
mypy = "^1.0"
myst-parser = "^4.0.0"
pre-commit = "^3.0"
pylint = "^3.0"
pytest = "^8.0.0"
pytest-cov = "^5.0.0"
pytest-mock = "^3.8.2"
python-dotenv = "^1.0.0"
requests-toolbelt = "^1.0.0"
sphinx = "^7.0"
sphinx-rtd-theme = "^2.0.0"
urllib3 = { extras = ["appengine"], version = "^2.2.1" }
pytest-vcr = "^1.0.2"
nbsphinx = "^0.9.5"
[tool.black]
line-length = 120
target-version = ['py310']
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.pytest.ini_options]
addopts = "-s -v"
log_cli = false
[tool.isort]
profile = "black"
line_length = 120
[tool.safety]
full_report = true
ignore = "67599,70612"