-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (34 loc) · 879 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "monviso"
authors = [
{ name="Nicola Mignoni", email="nicola.mignoni@poliba.it" },
]
description = "A Python package for solving monotone variational inequalities."
keywords = [
"variational inequalities",
"optimization",
"game theory",
"control theory",
"cvxpy",
"complementarity problem",
"equilibrium problem"
]
dynamic = ["version"]
readme = "README.md"
dependencies = [
"numpy",
"cvxpy"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.setuptools.dynamic]
version = { attr = "monviso.__version__" }
[project.urls]
Homepage = "https://github.com/nicomignoni/monviso"
Documentation = "https://monviso.readthedocs.io/en/latest/index.html"