-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
72 lines (66 loc) · 1.41 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
69
70
71
72
[tool.poetry]
name = "CytoPy"
version = "2.0.2"
description = "Data centric algorithm agnostic cytometry analysis framework"
authors = ["Ross Burton <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
cython = "^0.29"
anytree = "^2.8"
detecta = "^0.0.5"
future = "^0.18"
graphviz = "^0.14"
h5py = "^2.10"
hdbscan = "^0.8"
harmonypy = "0.0.5"
imbalanced-learn = "^0.7"
ipython = "7.18.1"
KDEpy = "1.0.10"
loguru = "^0.5"
matplotlib = "^3.3"
mongoengine = "^0.20"
nbconvert = "^6.0"
networkx = "^2.5"
oauthlib = "^3.1.0"
openpyxl = "3.0.6"
pandas = "^1.1.2"
phate = "^1.0.4"
python-dateutil = "^2.8.1"
scikit-learn = "^0.24.1"
scikit-fda = "0.5"
scipy = "1.6.0"
scprep = "^1.0"
seaborn = "^0.11.0"
shapely = "1.7.1"
shap = "0.38.1"
sphinx = {version = "^3", optional = true}
snowballstemmer = "^2.0.0"
statsmodels = "^0.12"
autodocsumm = "^0.2.1"
tables = "^3.6.1"
tensorflow = "^2.4"
tqdm = "^4.49.0"
umap-learn = "^0.4.6"
xgboost = "^1.2.0"
xlrd = "^1.2.0"
yellowbrick = "^1.1"
FlowIO = "0.9.5"
MiniSom = "^2.2.6"
PhenoGraph = "^1.5.6"
pingouin = "^0.3.8"
setuptools = "^49.6.0"
uncertainties="^3.1"
flowutils = "0.9.3"
[tool.poetry.dev-dependencies]
jupyter = "^6"
mongomock = "^3.20.0"
pytest = "^6.0.2"
sphinx = "^3.2.1"
sphinx-theme = "^1.0"
sphinx-rtd-theme = "^0.4.3"
[tool.poetry.extras]
docs = ["sphinx"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"