-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·74 lines (66 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
executable file
·74 lines (66 loc) · 1.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scEcho"
version = "0.0.5"
description = "A framework for identifying desynchronized cell states from paired single-cell RNA and ATAC data."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "Connor Finkbeiner" },
]
keywords = ["single-cell", "genomics", "bioinformatics", "scanpy", "anndata"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy",
"pandas",
"scipy",
"scikit-learn",
"matplotlib",
"seaborn",
"plotly",
"statsmodels",
"tqdm",
"anndata>=0.10,<1",
"scanpy>=1.10,<2",
"mellon>=1.7,<2",
"kompot>=0.7,<1",
"palantir>=1.3",
"h5py>=3.10,<4",
"adjustText",
"itables",
"ipywidgets",
"ipython",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"build",
"twine",
"ruff",
]
[project.urls]
Homepage = "https://github.com/settylab/scEcho"
Repository = "https://github.com/settylab/scEcho"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]