-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "oncopacket"
dynamic = ["version"]
requires-python = ">=3.8"
description = "Generate and work with GA4GH phenopackets for NCI"
readme = "README.md"
authors = [
{name = "Peter Robinson", email="[email protected]"},
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
keywords = [
"Global Alliance for Genomics and Health",
"GA4GH Phenopacket Schema",
"Human Phenotype Ontology",
"GA4GH",
"NCI",
"HPO"]
dependencies = [
"hpo-toolkit>=0.3.0,<0.4.0",
"phenopackets>=2.0.2",
"requests>=2.25.0,<3.0",
"cdapython@git+https://github.com/CancerDataAggregator/cdapython@0324510",
"ipython<=8.22.2", # higher versions result in an import error
"tqdm>=4.60",
]
[project.optional-dependencies]
test = ["pytest>=7.0.0,<8.0.0"]
[project.urls]
homepage = "https://github.com/monarch-initiative/oncopacket"
repository = "https://github.com/monarch-initiative/oncopacket.git"
documentation = "https://github.com/monarch-initiative/oncopacket"
bugtracker = "https://github.com/monarch-initiative/oncopacket/issues"
[tool.setuptools.dynamic]
version = { attr = "oncopacket.__version__" }