-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.01 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "genevector"
version = "1.0.0"
authors = [
{ name="Nicholas Ceglia", email="nickceglia@gmail.com" },
]
description = "Single Cell GeneVector Library"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"scanpy>=1.9",
"numpy>=1.21",
"umap-learn>=0.5",
"tqdm>=4.60",
"seaborn>=0.12",
"matplotlib>=3.6",
"scipy>=1.9",
"scikit-learn>=1.0",
"pandas>=1.5",
"torch>=2.0",
"scikit-misc>=0.1",
"leidenalg>=0.9",
"anndata>=0.8",
]
[project.optional-dependencies]
fast = ["numba>=0.57"]
dev = ["pytest>=7.0"]
[project.urls]
"Homepage" = "https://github.com/nceglia/genevector"
"Documentation" = "https://genevector.readthedocs.io"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "."
module-name = "genevector._rust"