-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.25 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
[tool.poetry]
name = "pygradflow"
version = "0.5.21"
description = "PyGradFlow is a simple implementation of the sequential homotopy method to be used to solve general nonlinear programs."
authors = ["Christoph Hansknecht <[email protected]>"]
readme = "README.md"
repository = "https://github.com/chrhansk/pygradflow"
documentation = "https://pygradflow.readthedocs.io"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
scipy = ">=1.14"
matplotlib = ">=3.7.0"
termcolor = ">=2.3.0"
numpy = ">=2.0"
pyyaml = ">=6.0.0"
cyipopt = ">=1.4.1"
[tool.poetry.group.solvers.dependencies]
pyomo = "^6.7.3"
pymumps = ">=0.3.2"
pyspral = ">=0.1.0"
scikit-sparse = "^0.4.13"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.0"
isort = ">=5.0"
black = ">=20.0"
mypy = ">=1.7"
types-pyyaml = ">=6.0"
pytest-timeout = ">=2.0"
pyflakes = ">=3.0"
mpspy = ">=0.1.4"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
[tool.poetry.group.bench]
optional = true
[tool.poetry.group.bench.dependencies]
pyqplib = ">=0.1.5"
pycutest = "^1.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
plugins = [
"numpy.typing.mypy_plugin",
]