-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (60 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
74 lines (60 loc) · 1.58 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
[project]
name = "abaco"
description = "Batch Effect Correction framework for metagenomic data"
authors = [
{ name = "Edir Sebastián Vidal Castro"},
{ name = "Angel L. P." },
{ name = "Henry Webel" },
{ name = "Atieh Gharib" },
{ name = "Juliana Assis" },
{ name = "Sebastián Ayala-Ruano" },
{ name = "Alberto Santos", email = "albsad@dtu.dk" }
]
dynamic = [
"version",
"dependencies",
]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
license = "MIT" # https://choosealicense.com/
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
"Bug Tracker" = "https://github.com/Multiomics-Analytics-Group/abaco/issues"
homepage = "https://github.com/Multiomics-Analytics-Group/abaco"
repository = "https://github.com/Multiomics-Analytics-Group/abaco"
documentation = "https://mona-abaco.readthedocs.io"
[project.optional-dependencies]
# for building docs locally and readthedocs
docs = [
"sphinx",
"sphinx-book-theme",
"myst-nb",
"ipywidgets",
"sphinx-new-tab-link!=0.2.2",
"jupytext",
"sphinx-copybutton",
"anndata"
]
# local development options
dev = [
"black[jupyter]",
"ruff",
"pytest",
"ipykernel"
]
[tool.ruff.lint]
extend-select = ["E", "W", "F"] #, "B"]
ignore = ["E501",]
[tool.isort]
profile = "black"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]
[tool.setuptools_scm]
fallback_version = "0.0.0"