-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (45 loc) · 1.27 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
[tool.poetry]
name = "acrclient"
version = "0.0.0"
description = "API wrapper for the v2 ACRCloud API"
authors = ["RaBe IT-Reaktion <[email protected]>"]
license = "AGPL-v3"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
readme = "README.md"
packages = [
{ include = "acrclient"},
]
[tool.poetry.dependencies]
python = "^3.11"
requests = ">=2.28.2"
cachecontrol = ">=0.13,<0.15"
[tool.poetry.group.dev.dependencies]
freezegun = "^1.2.2"
Markdown = "^3.3"
mkdocstrings = {extras = ["python"], version = ">=0.21.2,<0.28.0"}
mkdocs-material = "^9.1"
mkdocs = "^1.4.2"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.0"
mkdocs-section-index = "^0.3.5"
pytest = ">=8.1.1,<9.0.0"
pytest-cov = ">=4,<7"
pytest-mypy = "^0.10.3"
pytest-random-order = "^1.1.0"
pytest-ruff = ">=0.3.1,<0.5.0"
requests-mock = "^1.10.0"
ruff = ">=0.5.1,<0.9.0"
types-requests = "^2.28.11"
wheel = ">=0.40,<0.46"
[tool.pytest.ini_options]
minversion = "7.2"
addopts = "-ra -q --random-order --doctest-glob='*.md' --doctest-modules --cov=acrclient --cov-fail-under=100 --ignore=docs/ --ruff --mypy"
filterwarnings = [
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"