-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
49 lines (40 loc) · 1.21 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
[tool.poetry]
name = "checkatlas"
version = "0.7.1"
description="One liner tool to check the quality of your single-cell atlases."
authors = ["becavin-lab"]
readme = "README.md"
license = "BSD 3-Clause"
packages = [{include = "checkatlas"}]
include = ["checkatlas/checkatlas_workflow.nf","pyproject.toml"]
exclude = ["tests/", ".github", "*dask-worker-space*"]
homepage = "https://checkatlas.readthedocs.io/"
repository = "https://github.com/becavin-lab/checkatlas/"
documentation = "https://checkatlas.readthedocs.io/"
[tool.poetry.dependencies]
python = ">=3.12"
scikit-learn = ">=1.3"
scanpy = ">=1.9"
rpy2 = "^3.6.1"
multiqc = "^1.10"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocstrings = {version = "^0.27.0", extras = ["python"]}
pymdown-extensions = "^10.0"
[tool.poetry.group.dev.dependencies]
setuptools = "^80.9.0"
gitchangelog = "^3.0.4"
black = "^25.1.0"
flake8 = "^7.3.0"
pytest-cov = "^6.2.1"
isort = "^6.0.1"
mypy = "^1.16.1"
no-implicit-optional = "^1.4"
[tool.mypy]
no_implicit_optional = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
checkatlas = 'checkatlas.__main__:main'
checkatlas-workflow = 'checkatlas.checkatlas_workflow:main'