Diff of /pyproject.toml [000000] .. [d90ecf]

Switch to unified view

a b/pyproject.toml
1
[tool.poetry]
2
name = "scpanel"
3
version = "0.2.0"
4
description = ""
5
authors = ["carissaxie <yixie0822@outlook.com>"]
6
readme = "README.md"
7
packages = [{include = "scpanel", from = "src"}]
8
9
[tool.poetry.dependencies]
10
python = "3.10"
11
scanpy = "1.9.3"
12
scikit-learn = "1.0.2"
13
pandas = "2.0.3"
14
packaging = "23.1"
15
anndata = "^0.10.8"
16
torch = "1.13.0"
17
torch-geometric = "^2.5.3"
18
numpy = "1.24.4"
19
seaborn = "0.12.2"
20
21
22
[tool.poetry.group.dev.dependencies]
23
black = "^24.10.0"
24
isort = "^5.13.2"
25
monkeytype = "^23.3.0"
26
27
28
[tool.poetry.group.test.dependencies]
29
pytest = "^8.3.3"
30
hypothesis = "^6.115.2"
31
32
33
[tool.poetry.group.doc.dependencies]
34
sphinx = "7.4.7"
35
sphinx-autobuild = "2024.2.4"
36
myst-parser = "3.0.0"
37
nbsphinx = "^0.9.5"
38
sphinx-autoapi = "^3.3.2"
39
sphinx-rtd-theme = "^3.0.1"
40
41
42
[tool.isort]
43
profile = "black"
44
known_third_party = []
45
46
[build-system]
47
requires = ["poetry-core"]
48
build-backend = "poetry.core.masonry.api"