-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["pdm-backend", "flask", "sqlalchemy", "sqlalchemy_json"]
build-backend = "pdm.backend"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.coverage]
run.branch = true
run.source = ["project_tracking"]
[project]
name = "project_tracking"
dynamic = ["version"]
authors = [
{ name="P-O Quirion", email="[email protected]" },
{ name="Paul Streteowich", email="[email protected]" },
]
description = "API and DB to track C3G assembler"
readme = "README.md"
requires-python = ">=3.10.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"flask>=2.2.2",
"sqlalchemy>=2.0.25",
"alembic>=1.13.1",
"alembic-utils",
"alembic-postgresql-enum",
"gunicorn>=20.1.0",
"sqlalchemy-json>=0.5.0"
]
[project.urls]
"Homepage" = "https://github.com/C3G/project_tracking"
"Bug Tracker" = "https://github.com/pypa/project_tracking/issues"
[project.optional-dependencies]
tests = [
"pytest",
"coverage",
]
postgres = [
"psycopg2-binary",
]
[tool.pdm]
allow-direct-references = true
[tool.pdm.version]
source = "file"
path = "project_tracking/__version__.py"
# source = "scm"
# version_format = "project_tracking.version:format_version"
# write_to = "project_tracking/__version__.py"
# write_template = "__version__ = '{}'"