-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 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
46
47
48
49
50
[project]
name = "docker-logger"
dynamic = ["version", "dependencies"]
description = 'Education Warehouse tool voor docker-logger.'
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.txt" } # Copyright (c) 2024 Education Warehouse
keywords = ['edwh']
authors = [
{ name = "Romy Scholler", email = "romy.s@educationwarehouse.nl" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
dev = [
"hatch",
"python-semantic-release<8",
"black",
"web2py-gluon",
'edwh[omgeving,plugins]',
'pytest'
]
[tool.hatch.version]
path = "app/__init__.py"
[tool.setuptools]
packages = []
[tool.semantic_release]
branch = "studiovo/staging"
version_variable = "app/__init__.py:__version__"
change_log = "CHANGELOG.md"
upload_to_repository = false
upload_to_release = false
build_command = "hatch build"
[tool.pytest.ini_options]
pythonpath = [
"web2py",
]