-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (98 loc) · 2.51 KB
/
pyproject.toml
File metadata and controls
108 lines (98 loc) · 2.51 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[project]
authors = [
{ name = "Alberto Santos Delgado", email = "albsad@dtu.dk" },
{ name = "Henry Webel", email = "heweb@dtu.dk" },
]
name = "acore"
dynamic = ["version"]
description = "A Python package with statistical functions to analyse multimodal molecular data"
license = { text = "GNU General Public License v3" }
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
"pandas",
"dsp-pandas", # has only pandas related dependencies
"vuecore",
"scipy",
"scikit-learn>=1.5",
"networkx",
"biopython",
"combat",
"gseapy!=1.1.5",
"kmapper",
"lifelines",
"pingouin<0.6.0", # ToDo: update column name changes, https://pingouin-stats.org/changelog.html#v0-6-0-february-2026
"python-louvain",
"PyWGCNA!=2.2.0", # to fix.
"snfpy",
"umap-learn",
"statsmodels",
"inmoose", # combat batch correction
"requests",
"rarfile",
"pandera",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-book-theme",
"myst-nb",
"ipywidgets",
"sphinx-new-tab-link!=0.2.2",
"jupytext",
"sphinx-copybutton",
"sphinx-llms-txt",
]
dev = [
"black[jupyter]",
"flake8",
"ruff",
"isort",
"pytest",
"pytest-cov",
"twine",
"wheel",
"jupytext",
"ipykernel",
]
[project.urls]
Homepage = "https://github.com/Multiomics-Analytics-Group/acore"
Issues = "https://github.com/Multiomics-Analytics-Group/acore/issues"
Documentation = "https://analytics-core.readthedocs.io/"
[tool.ruff]
# https://docs.astral.sh/ruff/rules/#flake8-bandit-s
[tool.ruff.lint]
# https://docs.astral.sh/ruff/tutorial/#rule-selection
# 1. Enable flake8-bugbear (`B`) rules
# 2. Enable pycodestyle (`E`) errors and (`W`) warnings
# 3. Pyflakes (`F`) errors
# extend-select = ["E", "W", "F", "B"]
# Ignore line length errors:
# ignore = ["E501"]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# https://setuptools-scm.readthedocs.io/
# used to pick up the version from the git tags or the latest commit.
[tool.isort]
profile = "black"
# [entrypoints]
# console_scripts = {
# "acore = acore.cli:main"
# }
# [package]
# include = [
# "README.rst",
# "HISTORY.rst",
# ]