-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 900 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
41
42
43
44
45
[tool.poetry]
name = "scez"
version = "0.1.2"
authors = [
"Abe Arab <[email protected]>"
]
license = "MIT"
readme = "README.md"
description = "Single Cell Analysis, Easy Mode!"
classifiers = [
"License :: OSI Approved :: MIT License"
]
packages = [
{ include = "scez" },
{ include = "pyproject.toml" },
]
[tool.poetry.urls]
Source = "https://github.com/abearab/scez"
[tool.poetry.dependencies]
python = "^3.9 <4.0"
numpy = "^1.26.0"
pandas = "^2.1.4 <3.0.0"
bottleneck = "^1.3.6"
tqdm = "*"
tomli = "*"
matplotlib = "^3.7"
seaborn = "^0.12.2"
adjustText = "^0.7.3"
scanpy = "^1.9.6"
anndata = "^0.8.0"
adpbulk = "^0.1.4"
pydeseq2 = "^0.4.0"
pytdc = "^1.0.0"
blitzgsea = "^1.3.0"
[tool.poetry.group.test.dependencies]
pytest = "*"
tomli = "*"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"