-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 920 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
[tool.poetry]
name = "cytocluster"
version = "0.1.13"
description = "A package for clustering high-dimensional cytometry data in Python."
authors = ["burtonrj <[email protected]>"]
exclude = [
"cytocluster/tests/assets/levine32.csv",
"cytocluster/tests/assets/test.fcs",
"cytocluster/tests/assets/panel.xlsx",
"cytocluster/tests/assets/population_names_Levine_32dim.txt"
]
readme = "README.md"
homepage = "https://github.com/burtonrj/CytoCluster"
repository = "https://github.com/burtonrj/CytoCluster"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.4.3"
cytotools = "^0.1.21"
cytoplots = "^0.1.0"
hdmedians = "^0.14.2"
MiniSom = "^2.3.0"
hnswlib = "^0.6.2"
PhenoGraph = "^1.5.7"
jupyter = "^1.0.0"
ipython = "^8.4.0"
ensembleclustering = "1.0.2"
llvmlite = "^0.39"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"