-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.17 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "single-cell-rnaseq-immune-profiling"
version = "1.0.0"
description = "Single-cell RNA-seq immune cell profiling pipeline using scanpy"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [{name = "Ekin Kahraman", email = "evk23umu@uea.ac.uk"}]
keywords = ["bioinformatics", "single-cell", "RNA-seq", "scanpy", "immune profiling"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"scanpy>=1.10",
"anndata>=0.10",
"leidenalg>=0.10",
"matplotlib>=3.8",
"seaborn>=0.13",
"numpy>=1.24",
"pandas>=2.0",
"scipy>=1.11",
"scikit-learn>=1.3",
]
[project.urls]
Repository = "https://github.com/Ekin-Kahraman/single-cell-rnaseq-immune-profiling"
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-cov>=4.0"]
viz = ["imageio>=2.14"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"