-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
82 lines (76 loc) · 2.08 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
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cellsweep"
version = "0.1.3"
description = "Denoising scRNA-seq in a smart and efficient way."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [
{name = "Maya Caskey", email = "mcaskey@caltech.edu"},
{name = "Joseph Rich", email = "jmrich@caltech.edu"},
]
maintainers = [
{name = "Maya Caskey", email = "mcaskey@caltech.edu"},
{name = "Joseph Rich", email = "jmrich@caltech.edu"}
]
requires-python = ">=3.9"
keywords = ["bioinformatics", "machine learning", "single-cell", "scRNA-seq", "denoising", "data-analysis"]
classifiers = [
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Utilities"
]
dependencies = [
"numpy",
"numba>=0.56.2",
"pandas",
"scipy",
"anndata",
"pydantic>=2.5,<3.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black[jupyter]>=22.0.0",
"isort>=6.0.0",
"pympler>=1.1"
]
analysis = [
"nbval>=0.10.0",
"nbdime>=4.0.2",
"ipython>=8.0.0",
"upsetplot",
"PyYAML",
"scanpy",
"seaborn",
"matplotlib",
"celltypist",
"mpl-scatter-density",
"astropy",
"scikit-learn",
"ipywidgets",
"torch",
"scikit-misc",
"adjustText",
"squidpy",
"tqdm",
"requests"
]
[project.urls]
"Homepage" = "https://github.com/pachterlab/cellsweep"
[tool.setuptools.packages.find]
include = ["cellsweep*"]
[tool.setuptools.package-data]
cellsweep = ["*.txt", "*.md", "*.csv"] # Ensure additional files like data or docs are included
[project.scripts]
cellsweep = "cellsweep.main:main" # This replaces the console_scripts entry