-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
61 lines (57 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "CalicoST"
version = "1.0.0"
authors = [
{ name="Cong Ma", email="[email protected]" },
{ name="Metin Balaban", email="[email protected]" },
{ name="Jingxian Liu", email="[email protected]" },
{ name="Siqi Chen", email="[email protected]" },
{ name="Li Ding", email="[email protected]" },
{ name="Ben Raphael", email="[email protected]" },
]
description = "Inferring allele-specific copy number aberrations and tumor phylogeography from spatially resolved transcriptomics"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
'numpy',
'scipy',
'pandas',
'scikit-learn',
'scanpy',
'anndata',
'numba',
'tqdm',
'statsmodels',
'networkx',
'matplotlib',
'seaborn',
'pysam',
'ete3'
]
[project.optional-dependencies]
docs = [
"ipython",
"ipywidgets>=8.0.0",
"sphinx>=5.3",
"sphinx-autodoc-annotation",
"sphinx-autodoc-typehints>=1.10.3",
"sphinx_rtd_theme",
"sphinxcontrib-bibtex>=2.3.0",
"sphinxcontrib-spelling>=7.6.2",
"nbsphinx>=0.8.1",
"myst-nb>=0.17.1",
"sphinx_copybutton>=0.5.0",
]
[project.urls]
"Homepage" = "https://github.com/raphael-group/CalicoST"
[tool.setuptools.packages.find]
where = ["src"]
include = ["calicost*"]