File size: 857 Bytes
925ee3b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "scptr"
version = "0.1.0"
description = "Single-cell post-transcriptional regulation analysis"
requires-python = ">=3.9"
dependencies = [
    "anndata>=0.8",
    "scanpy>=1.9",
    "numpy>=1.21",
    "scipy>=1.7",
    "numba>=0.55",
    "pandas>=1.3",
    "matplotlib>=3.5",
    "seaborn>=0.11",
]

[project.optional-dependencies]
dev = [
    "pytest>=7.0",
    "scikit-learn>=1.0",
]
datasets = [
    "pooch>=1.6",
]
deep = [
    "torch>=2.0",
]

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
"scptr.tools" = ["data/*.csv"]
"scptr.datasets" = ["data/*.csv"]
"scptr.benchmark" = ["data/*.txt"]

[tool.pytest.ini_options]
markers = [
    "slow: marks tests as slow (deselect with '-m \"not slow\"')",
]