-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
73 lines (68 loc) · 2 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
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gpsea"
authors = [
{name = "Lauren Rekerle", email="[email protected]"},
{name = "Daniel Danis", email="[email protected]"},
{name = "Peter Robinson", email="[email protected]"},
]
description = "Discover genotype-phenotype correlations with GA4GH phenopackets"
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"Global Alliance for Genomics and Health",
"GA4GH Phenopacket Schema",
"Human Phenotype Ontology",
"GA4GH",
"Genotype-phenotype correlation",
"HPO",
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"hpo-toolkit>=0.3.0",
"stairval>=0.2.0",
"Jinja2>=3.1.4,<4.0.0",
"protobuf>=3.15.0",
"pandas>=2.0.0,<3.0.0",
"phenopacket-store-toolkit>=0.1.2",
"requests>=2.25.0,<3.0",
"scipy>=1.10,<2.0",
"statsmodels>=0.13.0",
"numpy>=1.23",
"matplotlib>=3.2.0,<4.0",
"ratelimit>=2.2.1,<3",
"tqdm>=4.60",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest>=7.0.0,<8.0.0",
"pytest-cov",
]
docs = [
"sphinx>=7.0.0",
"sphinx-rtd-theme>=1.3.0",
"sphinx-rtd-dark-mode>=1.3.0",
"sphinx-copybutton>=0.5.0",
]
[project.urls]
homepage = "https://github.com/monarch-initiative/gpsea"
repository = "https://github.com/monarch-initiative/gpsea.git"
documentation = "https://monarch-initiative.github.io/gpsea/stable"
bugtracker = "https://github.com/monarch-initiative/gpsea/issues"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.dynamic]
version = { attr = "gpsea.__version__" }