-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 1.02 KB
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
[tool.poetry]
name = "sofos"
version = "0.1.0"
description = "Use of Machine Learning to maximize a score on the famous 2048 game"
authors = ["PierreSavatte <pierre-savatte@laposte.net>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
torch = [
{ version = "^2.5.0", source = "windows-cuda-pytorch", markers = "sys_platform == 'win32'" },
{ version = "^2.5.0", source = "pypi", markers = "sys_platform != 'win32'" },
]
gymnasium = "^1.0.0"
matplotlib = "^3.9.2"
pygame = "^2.6.1"
pyqt6 = { version = "^6.7.1", markers = "sys_platform == 'win32'" }
pyqt5 = { version = "^5.15.11", source = "pypi", markers = "sys_platform != 'win32'" }
tqdm = "^4.66.5"
[tool.poetry.group.dev.dependencies]
isort = "5.13.2"
black = "24.10.0"
[[tool.poetry.source]]
name = "windows-cuda-pytorch"
url = "https://download.pytorch.org/whl/cu124"
priority = "explicit"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"