-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 991 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "influenzanet.surveys"
dynamic = ["version"]
authors = [
{ name='Clement Turbelin', email="[email protected]" },
]
description = "Influenzanet surveys management library"
license = {text = "Apache-2.0"}
readme = "readme.md"
requires-python = ">=3.9"
keywords = ["influenzanet", "surveys"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps."
]
dependencies = [
"jinja2==3",
"jsonschema==4.*"
]
[project.optional-dependencies]
validator= [
"urllib3==1.26.*",
"PyYAML==6.0.1"
]
[project.urls]
"Homepage" = "https://github.com/influenzanet/python-influenzanet-surveys"
"Bug Tracker" = "https://github.com/influenzanet/python-influenzanet-surveys/issues"
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"