-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.34 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
[tool.poetry]
name = "acrloader"
version = "0.0.0"
description = "Loads data from ACRCloud's broadcast monitoring and stores it in ownCloud."
authors = ["RaBe IT Reaktion <[email protected]>"]
license = "AGPLv3"
readme = "README.md"
packages = [{include = "main.py"}]
[tool.poetry.scripts]
acrloader = 'main:main'
[tool.poetry.dependencies]
python = "^3.11"
acrclient = "^0.4.6"
configargparse = "^1.7"
pyocclient = "^0.6"
requests = "^2.32"
tqdm = "^4.67.1"
minio = "^7.2.13"
cachecontrol = "^0.14.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
ruff = "^0.8.4"
mypy = "^1.14.0"
types-tqdm = "^4.67.0.20241221"
pytest-random-order = "^1.1.1"
pytest-cov = "^6.0.0"
pytest-mypy = "^0.10.3"
pytest-ruff = "^0.4"
requests-mock = "^1.12.1"
pytest-freezegun = "^0.4.2"
mkdocs = "^1.6.1"
mkdocs-autorefs = "^1.1.0"
mkdocstrings = {extras = ["python"], version = "^0.27.0"}
mkdocs-material = "^9.5.49"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
mkdocs-section-index = "^0.3.9"
pre-commit = "^4.0.1"
types-urllib3 = "^1.26.25.14"
[tool.pytest.ini_options]
minversion = "7.2"
addopts = "-ra -q --random-order --doctest-glob='*.md' --doctest-modules --ignore=docs/ --cov=main --cov-fail-under=100 --ruff --mypy"
filterwarnings = ["ignore::DeprecationWarning:pytest_freezegun"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"