-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.14 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
[tool.poetry]
name = "pyCellPhenoX"
version = "1.3"
description = "An eXplainable Cell-specific machine learning method to predict clinical Phenotypes using single-cell multi-omics"
authors = [
"Jade Young",
"Jun Inamo",
"Zac Caterer",
"Revanth Krishna",
"Fan Zhang"
]
maintainers = ["Revanth Krishna <[email protected]>"]
license = "MIT license"
readme = "README.md"
homepage = "https://pyCellPhenoX.readthedocs.io/"
repository = "https://github.com/fanzhanglab/pyCellPhenoX"
include = [{ path = "poetry.lock", format = "sdist" }]
packages = [
{ include = "pyCellPhenoX" }
]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^2.2.3"
numpy = "^2.0"
xgboost = "^2.1.1"
numba = ">=0.54"
shap = "^0.46.0"
scikit-learn = "^1.5.2"
matplotlib = "^3.9.2"
statsmodels = "^0.14.3"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.0"
sphinx-copybutton = "^0.5.1"
sphinx-mdinclude = "^0.6"
nbsphinx = "^0.9.2"
myst-parser = "^2.0.0"
furo = "^2024.8.6"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
requests = "^2.32.3"
black = "^23.9.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"