-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (45 loc) · 1.09 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
[project]
name = "njab"
authors = [{ name = "Henry Webel", email = "[email protected]" }]
description = "not Just Another Biomarker"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["bioinformatics", "biomarker"]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"omegaconf",
"numpy",
"pandas",
"scikit-learn>=1.4",
"statsmodels",
"matplotlib",
"mrmr_selection",
"pingouin",
"seaborn",
]
dynamic = ["version"]
[project.optional-dependencies]
all = [
"lifelines",
]
docs = [
"sphinx",
"sphinx-book-theme",
"myst-nb",
"ipywidgets",
"sphinx-new-tab-link!=0.2.2",
]
[project.urls]
"Bug Tracker" = "https://github.com/RasmussenLab/njab/issues"
"Homepage" = "https://github.com/RasmussenLab/njab"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]
[tool.setuptools_scm]