-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (50 loc) · 1.71 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "multispaeti"
description = "Implementation of MULTISPATI-PCA in python"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.10"
dynamic = ["version"]
authors = [
{ name = "Niklas Müller-Bötticher", email = "[email protected]" },
]
dependencies = ["numpy>=1.23", "scikit-learn>=1.1", "scipy>=1.9"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
[project.optional-dependencies]
plot = ["matplotlib>=3.6"]
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.isort]
profile = "black"
[tool.black]
target-version = ["py310", "py311", "py312"]
[tool.ruff]
target-version = "py310"
[tool.mypy]
ignore_missing_imports = true
warn_no_return = false
packages = "multispaeti"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = "multispaeti"