-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (54 loc) · 1.59 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
[tool.poetry]
name = "suisa_sendemeldung"
version = "0.0.0"
description = "ACRCloud client for SUISA reporting"
repository = "http://github.com/radiorabe/suisa_reporting"
authors = ["RaBe IT-Reaktion <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "suisa_sendemeldung"}]
[tool.poetry.scripts]
suisa_sendemeldung = 'suisa_sendemeldung.suisa_sendemeldung:main'
[tool.poetry.dependencies]
python = "^3.12"
acrclient = "^0.4.4"
ConfigArgParse = "^1.5.5"
iso3901 = "^0.3.0.post1"
openpyxl = "^3.1.2"
pytz = ">=2023.3,<2025.0"
requests = "^2.31.0"
rabe-cridlib = ">=0.12.0,<0.13.0"
dateutils = "^0.6.12"
tqdm = "^4.65.0"
Babel = "^2.12.1"
[tool.poetry.group.dev.dependencies]
freezegun = "^1.2.2"
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.14"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
mkdocs-section-index = "^0.3.8"
mkdocs-autorefs = "^1.0.1"
mkdocstrings = {extras = ["python"], version = ">=0.24.1,<0.28.0"}
mock = "^5.0.2"
pytest = ">=7.4,<9.0"
pytest-cov = ">=4.1,<7.0"
pytest-env = ">=0.8.2,<1.2.0"
pytest-mypy = "^0.10.3"
pytest-pylint = ">=0.19,<0.22"
pytest-ruff = ">=0.3.1,<0.5.0"
requests-mock = "^1.11.0"
ruff = ">=0.5.1,<0.9.0"
syrupy = "^4.6.1"
types-openpyxl = "^3.1.0.20240311"
types-python-dateutil = "^2.9.0.20240316"
types-pytz = "^2024.1.0.20240203"
types-requests = "^2.31.0.1"
types-tqdm = "^4.66.0.20240106"
wheel = ">=0.40,<0.46"
[tool.pytest.ini_options]
minversion = "8.1"
addopts = "--doctest-modules --cov=suisa_sendemeldung --cov-fail-under=100 --ignore=docs/ --mypy --ruff"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"