-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.05 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "antipode"
version = "0.2.0"
description = "Simultaneous integration, differential expression and clustering of single cell RNAseq data using pyro-powered variational inference."
readme = { file = "README.md", "content-type" = "text/markdown" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
authors = [
{ name = "Matthew Schmitz" }
]
dependencies = [
"scanpy",
"scvi-tools",
"pyro-ppl",
"seaborn",
"scikit-learn",
"legacy-cgi",
"ete3",
"glasbey"
]
[project.optional-dependencies]
extras = ["biopython", "gseapy", "PyComplexHeatmap", "glasbey"]
# rapids = [
# "cudf-cu12",
# "pylibcudf-cu12",
# "cuml-cu12",
# "cupy-cuda12"
[project.urls]
"Source" = "https://github.com/mtvector/scANTIPODE"
[tool.setuptools]
packages = { find = {} }
# [tool.setuptools.packages.find]
# exclude = ["tests*"]