-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 1.05 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
[tool.poetry]
name = "axia-pathfinder-client"
version = "0.0.0"
description = "Proof of concept Axia Pathfinder API/SDK."
authors = ["RaBe IT-Reaktion <[email protected]>"]
license = "AGPLv3"
readme = "README.md"
packages = [{include = "pathfinder"}]
[tool.poetry.dependencies]
python = "^3.11"
parsy = "^2.1"
[tool.poetry.group.dev.dependencies]
black = ">=23.3,<25.0"
pytest = ">=7.3.2,<9.0.0"
pytest-cov = ">=4,<7"
pytest-random-order = "^1.1.0"
pytest-ruff = ">=0.4.0,<0.5"
ruff = ">=0.5.1,<0.8.7"
isort = "^5.12.0"
pytest-isort = ">=3.1,<5.0"
mkdocs = "^1.4.3"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.0"
mkdocs-section-index = "^0.3.5"
mkdocs-material = "^9.1.16"
mkdocstrings = {extras = ["python"], version = ">=0.22,<0.28"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "7.2"
addopts = "-ra -q --random-order --cov=pathfinder --cov-fail-under=100 --ruff --isort --ignore=docs/"
#filterwarnings = ["ignore::DeprecationWarning:pytest_freezegun"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"