-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 772 Bytes
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
[tool.poetry]
name = "IPA"
version = "0.1.0"
description = "A fast and efficient way to iterative find Pareto optimal solutions for large-scale multiobjective optimization problems."
authors = ["Bhupinder Saini <bhupinder.s.saini@jyu.fi>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
matplotlib = "^3.8.3"
jupyter = "^1.0.0"
plotly = "^5.19.0"
seaborn = "^0.13.2"
scienceplots = "^2.1.1"
tqdm = "^4.66.2"
pyomo = "^6.7.1"
hvwfg = "^1.0.2"
pydantic = "^2.6.3"
pymoo = "^0.6.1.1"
desdeo-emo = "^1.5.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3"
mypy = "^1.8.0"
[tool.ruff]
line-length = 120
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"