-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (44 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
54 lines (44 loc) · 1.11 KB
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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "flagx"
version = "0.2.1"
description = "FLow cytometry Automated Gating toolboX"
readme = "README.md"
requires-python = ">=3.10,<3.14"
authors = [
{ name="Paul Martini", email="paul.martini@fau.de" }
]
license = { text = "GNU General Public License v3 (GPLv3)" }
urls = { Homepage = "https://github.com/bionetslab/FLAG-X" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
# dependencies = []
[project.scripts]
flagx = "flagx.cli:cli"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.dependencies]
python = "*"
numpy = "*"
pandas = "*"
scanpy = "*"
umap-learn = "*"
matplotlib = "*"
pytometry = "*"
flowio = "*"
scikit-learn = "*"
scipy = "*"
numba = "*"
somoclu = "*"
click = "*"
pyyaml = "*"
typing_extensions = "*"
[tool.pixi.pypi-dependencies]
torch = {version = ">=2.0", index="https://download.pytorch.org/whl/cpu"}
flagx = { path = ".", editable = true }