generated from ACCESS-NRI/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 872 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
[project]
name = "med-diagnostics"
authors = [
{ name = "ACCESS-NRI" },
]
description = "ACCESS MED-Diagnostics"
readme = "README.rst"
requires-python = ">=3.10"
license = {text = "APACHE-2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = ["apscheduler", "access-nri-intake", "panel", "matplotlib"]
dynamic = ["version"]
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.0.0",
"versioneer[toml]",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/med_diagnostics/_version.py"
versionfile_build = "med_diagnostics/_version.py"
tag_prefix = "v"
parentdir_prefix = "med_diagnostics-"