-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 1.66 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "soupx-python"
version = "0.3.0"
description = "Python implementation of SoupX for removing ambient RNA contamination from droplet-based single-cell RNA sequencing data"
readme = {file = "README.md", content-type = "text/markdown"} # Specify markdown explicitly
requires-python = ">=3.8"
license = {text = "GPL-2.0"}
maintainers = [{name = "Nicolas Ruffini", email = "nicolas.ruffini@posteo.de"}]
authors = [
{name = "Nicolas Ruffini", email = "nicolas.ruffini@posteo.de"},
]
keywords = ["single-cell", "RNA-seq", "bioinformatics", "decontamination", "ambient-RNA", "soupx"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
# Core dependencies (analyzed from your code)
dependencies = [
"numpy>=1.20.0",
"pandas>=1.3.0",
"scipy>=1.7.0",
"statsmodels>=0.12.0",
"scanpy>=1.8.0",
]
[project.optional-dependencies]
[project.urls]
Homepage = "https://github.com/NiRuff/soupx-python"
Repository = "https://github.com/NiRuff/soupx-python"
"Bug Tracker" = "https://github.com/NiRuff/soupx-python/issues"
[tool.setuptools.packages.find]
include = ["soupx*"]
[tool.black]
line-length = 88
target-version = ['py38']