-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.29 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
[build-system]
requires = ["flit_core", "flit_scm"]
build-backend = "flit_scm:buildapi"
[project]
name = "dyson-equalizer"
dynamic = ['version']
description = "Computes the Dyson Equalizer and related low rank approximation of the input data"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Boris Landa", email = "[email protected]"},
{name = "Francesco Strino", email = "[email protected]"},
{name = "Yuval Kluger", email = "[email protected]"},
]
maintainers = [
{name = "Francesco Strino", email = "[email protected]"},
]
keywords = ["Dyson Equalizer", "low rank approximation"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.6",
"numpy>=1.25",
]
[tool.flit.sdist]
exclude = [".gitignore"]
[tool.setuptools_scm]
write_to = "dyson_equalizer/_version.py"
[project.optional-dependencies]
dev = ["pytest", "flit_core", "flit_scm"]
[project.urls]
Documentation = "https://github.com/KlugerLab/DysonEqualizer.git"
Repository = "https://github.com/KlugerLab/DysonEqualizer.git"
"Bug Tracker" = "https://github.com/KlugerLab/DysonEqualizer/issues"