-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (36 loc) · 1.12 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
[tool.poetry]
description = "A Python package to communicate with Stratocore's PUMAPI."
name = "pyppms"
version = "0.0.0"
license = "GPLv3"
authors = [
"Niko Ehrenfeuchter <[email protected]>",
"Laurent Guerard <[email protected]>",
]
readme = "README.md"
documentation = "https://imcf.one/apidocs/pyppms/pyppms.html"
homepage = "https://pypi.org/project/pyppms/"
keywords = ["ppms", "pumapi", "booking-system", "reservation-system"]
repository = "https://github.com/imcf/pyppms"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
loguru = "^0.7.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pdoc = "^14.0.0"
pylint = "^2.17.4"
pylint-pytest = "^1.1.2"
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
pyyaml = "^6.0"
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
[tool.poetry-dynamic-versioning]
enable = true
[tool.pytest.ini_options]
addopts = "-rs -vv --cov=pyppms --cov-report html --maxfail=1"
markers = [
"online: enables tests requiring connection to a real PUMAPI (as opposed to a local cache)",
]