-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
43 lines (40 loc) · 1.24 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
[build-system]
requires = [
"setuptools >= 65",
"setuptools_scm[toml]",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "spgl1"
description = "SPGL1: A solver for large-scale sparse reconstruction."
readme = "README.md"
authors = [
{name = "David Relyea", email = "[email protected]"},
{name = "Matteo Ravasi", email = "[email protected]"},
]
license = {file = "License.md"}
keywords = ["algebra", "inverse problems", "large-scale optimization"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy >= 1.15.0",
"scipy",
]
dynamic = ["version"]
[tool.setuptools.packages.find]
exclude = ["pytests"]
[tool.setuptools_scm]
version_file = "spgl1/version.py"