forked from rsinghlab/pyaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 998 Bytes
/
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
[tool.poetry]
name = "pyaging"
version = "0.0.2"
description = "A Python-based compendium of GPU-optimized aging clocks."
authors = ["Lucas Paulo de Lima Camillo <[email protected]>"]
license = "BSD"
readme = "README.md"
[tool.poetry.urls]
homepage = "https://github.com/rsinghlab/pyaging"
repository = "https://github.com/rsinghlab/pyaging"
[tool.poetry.dependencies]
python = "^3.9"
scikit-learn = "^1.3.2"
pandas = "^2.1.3"
torch = "^2.1.1"
numpy = "^1.26.2"
pyBigWig = "^0.3.22"
anndata = "^0.10.3"
[tool.poetry.dev-dependencies]
sphinx = "^7.1.2"
sphinx-rtd-theme = "^1.3.0rc1"
sphinx-autodoc-typehints = "^1.12.0"
ipykernel = "^5.1.0"
nbsphinx = "^0.8.11"
pygments = "^2.6.1"
pytest = "^7.2.0"
nbmake = "^1.4.6"
[tool.poetry.scripts]
pyaging = "pyaging:main"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme", "sphinx-autodoc-typehints", "ipykernel", "nbsphinx", "pygments"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"