-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.77 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gpsea-cs"
authors = [
{name = "Lauren Rekerle", email="[email protected]"},
{name = "Daniel Danis", email="[email protected]"},
{name = "Peter Robinson", email="[email protected]"},
]
description = "Explore genotype-phenotype correlations in GA4GH phenopacket cohorts"
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"Genotype-phenotype correlation",
"Global Alliance for Genomics and Health",
"GA4GH Phenopacket Schema",
"Human Phenotype Ontology",
"GA4GH",
"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",
"gpsea>=0.9.1",
"phenopacket-store-toolkit>=0.1.2",
"matplotlib>=3.2.0,<4.0",
]
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-copybutton>=0.5.0"]
[project.urls]
homepage = "https://github.com/monarch-initiative/gpsea-cs"
repository = "https://github.com/monarch-initiative/gpsea-cs.git"
documentation = "https://monarch-initiative.github.io/gpsea-cs/stable"
bugtracker = "https://github.com/monarch-initiative/gpsea-cs/issues"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.dynamic]
version = { attr = "gpseacs.__version__" }