29 lines
791 B
TOML
29 lines
791 B
TOML
[build-system]
|
||
build-backend = "poetry.core.masonry.api"
|
||
requires = ["poetry-core"]
|
||
|
||
[tool.poetry]
|
||
authors = ["Philipp Horstenkamp <philipp@horstenkamp.de>"]
|
||
description = "A Deep Learning implementation of the game Reversi aka. Otello. This is a Jupyter implementation only because it was requested in such a format for a class in my master’s degree. Enjoy the read or ignore it."
|
||
name = "reversi"
|
||
readme = "README.md"
|
||
version = "0.1.1"
|
||
|
||
[tool.poetry.dependencies]
|
||
ipytest = "^0.13.0"
|
||
jupyter = "^1.0.0"
|
||
matplotlib = "^3.6.3"
|
||
numpy = "^1.24.1"
|
||
pytest = "^7.2.1"
|
||
python = "3.10.*"
|
||
scipy = "^1.10.0"
|
||
tqdm = "^4.64.1"
|
||
jupyterlab = "^3.6.1"
|
||
torchvision = "^0.14.1"
|
||
torchaudio = "^0.13.1"
|
||
gym = "^0.26.2"
|
||
|
||
[tool.poetry.group.build.dependencies]
|
||
blackcellmagic = "^0.0.3"
|
||
pre-commit = "^3.0.2"
|