-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
executable file
·127 lines (121 loc) · 4.01 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[tool.poetry]
authors = ["Matthew Jones <[email protected]>", "Alex Khodaverdian", "Richard Zhang", "Sebastian Prillo", "Joseph Min"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
description = "Single Cell Lineage Reconstruction with Cas9-Enabled Lineage Recorders"
documentation = "https://cassiopeia-lineage.readthedocs.io/"
homepage = "https://github.com/YosefLab/Cassiopeia"
keywords = ['scLT']
license = "MIT"
name = "cassiopeia-lineage"
readme = 'README.md'
repository = "https://github.com/YosefLab/Cassiopeia"
version = "2.1.0"
include = [
{path = "cassiopeia/preprocess/*.so", format = "wheel"},
{path = "cassiopeia/preprocess/*.pyx", format = "wheel"},
{path = "cassiopeia/solver/*.so", format = "wheel"},
{path = "cassiopeia/solver/*.pyx", format = "wheel"},
{path = "cassiopeia/tools/branch_length_estimator/*.so", format = "wheel"},
{path = "cassiopeia/tools/branch_length_estimator/*.pyx", format = "wheel"},
{path = "cassiopeia/config.ini"},
]
packages = [
{include = "cassiopeia"},
]
[tool.poetry.dependencies]
Biopython = ">=1.71"
Cython = ">=0.29.2"
PyYAML = ">=3.12"
black = {version = ">=20.8b1", optional = true}
bokeh = ">=0.12.15"
cchardet = {version = ">=2.1.7", optional = true}
codecov = {version = ">=2.0.8", optional = true}
cvxpy = "*"
ete3 = ">=3.1.1"
hits = "*"
ipython = {version = ">=7.20", optional = true}
isort = {version = ">=5.7", optional = true}
itolapi = "*"
jupyter = {version = ">=1.0", optional = true}
matplotlib = ">=2.2.2"
nbconvert = {version = ">=5.4.0", optional = true}
nbformat = {version = ">=4.4.0", optional = true}
nbsphinx = {version = "*", optional = true}
nbsphinx-link = {version = "*", optional = true}
networkx = ">=3.1"
ngs-tools = ">=1.5.6"
numba = ">=0.51.0"
numpy = ">=1.22, <3.0"
opencv-python = {version = ">=4.5.4.60", optional = true}
pandas = ">=1.1.4"
parameterized = "*"
plotly = ">=5.0.0"
poisson-disc = {version = ">=0.2.1", optional = true}
pre-commit = {version = ">=2.7.1", optional = true}
pydata-sphinx-theme = {version = ">=0.4.3", optional = true}
pysam = ">=0.14.1"
pyseq-align = ">=1.0.2"
pytest = {version = ">=4.4", optional = true}
python = ">=3.7,<4.0"
pyvista = {version = "=0.41.0", optional = true}
scanpydoc = {version = ">=0.5", optional = true}
scikit-image = {version = ">=0.19.1", optional = true}
scikit-learn = {version = ">=1.0.2", optional = true}
scipy = ">=1.2.0"
sphinx = {version = ">=3.4", optional = true}
sphinx-autodoc-typehints = {version = "*", optional = true}
sphinx-gallery = {version = ">0.6", optional = true}
trame = {version = ">=3.2.4", optional = true}
trame-vtk = {version = ">=2.5.8", optional = true}
trame-vuetify = {version = ">=2.3.1", optional = true}
tqdm = ">=4"
typing-extensions = ">=3.7.4"
typing_extensions = {version = "*", python = "<3.8", optional = true}
vtk = {version = ">=9.2", optional = true}
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.7", "Cython", "numpy>=1.19.5", "setuptools", "pip>=22.0.0"]
[tool.poetry.scripts]
cassiopeia-preprocess = 'cassiopeia.preprocess.cassiopeia_preprocess:main'
[tool.poetry.extras]
dev = ["black", "pytest", "flake8", "codecov", "jupyter", "pre-commit", "isort"]
docs = [
"sphinx",
"scanpydoc",
"nbconvert",
"nbformat",
"nbsphinx",
"nbsphinx-link",
"ipython",
"pydata-sphinx-theme",
"typing_extensions",
"sphinx-autodoc-typehints",
"sphinx_gallery",
]
spatial = [
"opencv-python",
"poisson-disc",
"vtk",
"scikit-image",
"scikit-learn",
"trame",
"trame-vuetify",
"trame-vtk",
"cchardet",
"pyvista"
]