-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 744 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 744 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
[tool.poetry]
name = "gnn_scheduler"
version = "0.1.0"
description = "Job-Shop Scheduling Problem (JSSP) with Graph Neural Networks (GNNs)."
authors = ["Pabloo22 <pablo.arino22@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.25.0"
matplotlib = "^3.8.1"
ipykernel = "^6.26.0"
pandas = "^2.1.3"
python-dotenv = "^1.0.0"
omegaconf = "^2.3.0"
job-shop-lib = { git = "https://github.com/Pabloo22/job_shop_lib.git", branch = "main" }
tqdm = "^4.67.1"
wandb = "^0.19.8"
types-tqdm = "^4.67.0.20250301"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pylint = "^3.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79