-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
37 lines (35 loc) · 1.03 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
[project]
name = "openva_pipeline"
description = "Automate the processing of verbal autopsy data"
version = "0.99"
readme = "Readme.md"
requires-python = ">=3.8"
dependencies = [
"pandas",
"sqlcipher3",
"requests",
"pycrossva >= 0.97",
]
authors = [
{name = "Jason Thomas"},
{name = "Samuel J. Clark"},
{name = "Martin W. Bratschi"},
]
maintainers = [
{name = "Jason Thomas", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
[project.urls]
"Homepage" = "https://github.com/verbal-autopsy-software/openva_pipeline"
"Bug Tracker" = "https://github.com/verbal-autopsy-software/openva_pipeline/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"