forked from jensen-und-komplizen/csd_adventure_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 685 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 685 Bytes
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
[project]
name = "csdadventure"
version = "0.0.1"
authors = [
{ name="Björn Jensen", email="bjoern@jensen.coach"},
{ name="Falk Kühnel", email="falk@kuehnel.eu"},
]
description = "This is the loo adventure based on an idea by Falk Kühnel"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"flask >= 2.3.2",
"python-dotenv >= 1.0.0",
"parameterized == 0.9.*",
"requests >= 2.32.3"
]
[project.optional-dependencies]
dev = [
]
[project.urls]
"Homepage" = "https://github.com/jensen-und-komplizen/csd_adventure_python"
[tool.pytest.ini_options]
#addopts = "-ra -v --cov --cov-report term-missing"
minversion = 7.0
pythonpath = ["src"]
testpaths = ["tests"]