-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
68 lines (59 loc) · 1.43 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
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "pyaging"
version = "v0.1.11"
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,<3.12"
scikit-learn = "^1.3.2"
pandas = "^2.1.3"
torch = "^2.1.1"
numpy = "^1.26.2"
anndata = "^0.10.3"
[tool.poetry.dev-dependencies]
sphinx = "^7.1.2"
sphinx-rtd-theme = "^1.3.0rc1"
sphinx-autodoc-typehints = "^1.12.0"
sphinx-copybutton = "^0.5.2"
sphinx-book-theme = "^1.1.0"
sphinx-issues = "^3.0.1"
sphinx-design = "^0.5.0"
scanpydoc = "^0.10.0"
myst-parser = "^2.0.0"
ipykernel = "^5.1.0"
nbsphinx = "^0.8.11"
pygments = "^2.6.1"
pytest = "^7.2.0"
nbmake = "^1.4.6"
pyBigWig = {version = "^0.3.22", optional = true}
[tool.poetry.scripts]
pyaging = "pyaging:main"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme", "sphinx-autodoc-typehints", "ipykernel", "nbsphinx", "pygments"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
#"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.ruff.format]
docstring-code-format = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"