-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 903 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
38
39
[tool.poetry]
name = "alliancelib"
version = "0.1.0"
description = ""
authors = ["B Horn <[email protected]>"]
[tool.poetry.dev-dependencies]
mypy = "^0.971"
pylint = "^2.14.5"
pytest = "^7.1.2"
python-dotenv = "^0.20.0"
poethepoet = "^0.10.0"
jupyterlab = "^3.4.8"
[tool.poetry.dependencies]
python = "^3.10"
networkx = "^2.8.6"
PuLP = "^2.6.0"
z3-solver = "^4.11.0"
deap = "^1.3.3"
matplotlib = "^3.5.3"
joblib = "^1.1.0"
click = "^8.1.3"
pandas = "^1.5.0"
tqdm = "^4.64.1"
plotly = "^5.10.0"
mealpy = "^2.5.1"
lxml = "^4.9.1"
[tool.poe.tasks]
force-cuda11 = """
pip3 install torch==1.12.0 torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
pip install torch-scatter torch-sparse torch-cluster torch-spline-conv torch-geometric -f https://data.pyg.org/whl/torch-1.12.0+cu116.html
"""
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"