-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (52 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
66 lines (52 loc) · 1.8 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
[build-system]
requires = ["setuptools>=77.0.3", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "multispaeti"
description = "Implementation of MULTISPATI-PCA in python"
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dynamic = ["version"]
authors = [{ name = "Niklas Müller-Bötticher", email = "niklas.mueller-boetticher@charite.de" }]
dependencies = ["numpy>=1.25", "scikit-learn>=1.6", "scipy>=1.11"]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
[project.optional-dependencies]
cuda11 = ["cupy-cuda11x>=13"]
cuda12 = ["cupy-cuda12x>=13"]
plot = ["matplotlib>=3.8"]
test = ["pytest"]
docs = ["sphinx", "sphinx-copybutton", "sphinx-rtd-theme"]
dev = ["multispaeti[plot,test,docs]", "pre-commit"]
[project.urls]
Homepage = "https://github.com/HiDiHlabs/multiSPAETI"
Documentation = "https://multispaeti.readthedocs.io"
Repository = "https://github.com/HiDiHlabs/multiSPAETI"
Issues = "https://github.com/HiDiHlabs/multiSPAETI/issues"
[tool]
[tool.setuptools.packages.find]
include = ["multispaeti"]
[tool.setuptools_scm]
[tool.ruff]
target-version = "py311"
fix = true
show-fixes = true
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
warn_no_return = false
packages = "multispaeti"
plugins = "numpy.typing.mypy_plugin"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = "multispaeti"