-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.56 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 = "biostarling"
packages = [{ include = "starling" }]
version = "0.1.4"
description = "Segmentation error aware clustering single-cell spatial expression data"
repository = "https://github.com/camlab-bioml/starling"
authors = ["Jett (Yuju) Lee <[email protected]>"]
readme = "README.md"
keywords = ["imaging cytometry classifier single-cell"]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
license = "See License.txt"
[tool.poetry.dependencies]
python = ">= 3.9, < 3.13"
phenograph = "^1.5.7"
flowsom = "^0.1.1"
numpy = "^1.26"
pandas = ">= 0.23.0"
pytorch-lightning = "^2.3.3"
scanpy = "^1.10.2"
torch = "^2.4.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
pytest = "^7.4.4"
isort = "^5.13.2"
twine = "^5.1.0"
build = "^1.2.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
tensorboard = "^2.15.1"
lightning-lite = "^1.8.6"
ipykernel = "^6.29.0"
sphinx = "^7.2.6"
sphinx-autodoc-typehints = "^2.0.0"
sphinx-rtd-theme = "^2.0.0"
autodocsumm = "^0.2.12"
docutils = "^0.20.1"
myst-nb = "^1.0.0"
jupytext = "^1.16.1"
autodoc = "^0.5.0"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::FutureWarning",
"ignore::UserWarning",
]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"