-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.02 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "Regularization_Methods_for_HVIs"
version = "1.2"
authors = [
{ name = "Daniel Cortild", email = "daniel.cortild@maths.ox.ac.uk" },
{ name = "Meggie Marschner", email = "meggie.marschner@uni-mannheim.de" },
{ name = "Mathias Staudigl", email = "m.staudigl@uni-mannheim.de" }
]
description = "Package aimed at solving variational inequalities over the solution set of a monotone inclusion."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'numpy',
'scipy'
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/Hierarchical-VIs/Regularization-Methods-for-HVIs"
Issues = "https://github.com/Hierarchical-VIs/Regularization-Methods-for-HVIs/issues"
[options]
install_requires = [
'numpy',
'scipy'
]
setup_requires = [
'numpy',
'scipy'
]