-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (33 loc) · 1 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
[tool.poetry]
description = "A Python package to communicate with Stratocore's PUMAPI."
name = "pyppms"
version = "2.1.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.8"
requests = "^2.25.1"
[tool.poetry.dev-dependencies]
PyYAML = "^6.0"
black = "^22.0"
pdoc = "^10.0"
pylint = "^2.9.3"
pylint-pytest = "^1.1.2"
pytest = "^7.0"
pytest-cov = "^3.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[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)",
]