generated from CorrelAid/python-bare-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
72 lines (66 loc) · 1.9 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
[tool.poetry]
authors = [
"Ariz Weber <[email protected]>",
"CorrelAid <[email protected]>",
"Daniel Pleus <[email protected]>",
"Felix Schmitz <[email protected]>",
"Frederik Hering <[email protected]>",
"Marco Hübner <[email protected]>",
"Michael Aydinbas <[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.1.0"
readme = "README.md"
repository = ""
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.27.1"
pandas = "^1.4.3"
tabulate = "^0.8.10"
[tool.poetry.dev-dependencies]
bandit = "^1.7.4"
black = "^22.3.0"
flake8-docstrings = "^1.6.0"
isort = "^5.10.1"
mypy = "^0.942"
pre-commit = "^2.18.1"
pylint = "^2.13.4"
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
safety = "^2.0.0"
flake8 = "^4.0.1"
jupyter = "^1.0.0"
pytest-mock = "^3.8.2"
[tool.black]
line-length = 80
target-version = ['py39']
[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 = 80