-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.27 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.20"
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.9,<3.13"
scipy = "^1"
matplotlib = ">=3.7.0"
termcolor = ">=2.3.0"
numpy = "^1"
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.4.0"
pytest-isort = "^3.1.0"
pytest-black = "^0.3.12"
mypy = "^1.7.1"
types-pyyaml = "^6.0.12"
pytest-timeout = "^2.3.1"
pyflakes = "^3.2.0"
mpspy = "^0.1.3"
[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.3"
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",
]