-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.53 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
[project]
name = "ERKER2Phenopackets"
version = "2.0.0"
description = "Mapping the ERKER Dataset onto the Phenopackets Schema"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["pipeline", "rare diseases", "phenopackets"]
authors = [
{name = "Peter Robinson, MD, MSc", email = "[email protected]"},
{name = "Daniel Danis, PhD", email = "[email protected]"},
{name = "Adam Graefe", email = "[email protected]" },
{name = "Filip Rehburg", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Medical Computer Science :: Mapping Data Set to Phenopackets",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"phenopackets", "polars", "protobuf==3.20.1", "loguru", "genophenocorr"
]
[project.optional-dependencies]
test = ["pytest==7.1.2", "ruff", "isort", "coverage", "pytest-cov"]
[project.urls] # Optional
"Homepage" = "https://github.com/BIH-CEI/ERKER2Phenopackets"
[project.scripts]
pipeline = "ERKER2Phenopackets.src.mc4r.pipeline:main"
validate = "ERKER2Phenopackets.src.utils.validate_phenopackets:main"
cleardir = "ERKER2Phenopackets.src.utils.cleardir:main"
analyze = "ERKER2Phenopackets.src.analysis.mc4r_analysis:main"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"