36 lines
977 B
TOML
36 lines
977 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]
|
||
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"
|
||
kdepy = "^1.1.0"
|
||
plotly = "^5.13.0"
|
||
seaborn = "^0.12.2"
|
||
line-profiler = {extras = ["ipython"], version = "^4.0.2"}
|
||
memory-profiler = "^0.61.0"
|
||
joblib = "^1.2.0"
|
||
|
||
[tool.poetry.group.build.dependencies]
|
||
blackcellmagic = "^0.0.3"
|
||
pre-commit = "^3.0.2"
|
||
jupyterlab-git = "^0.41.0"
|
||
isort = "^5.12.0"
|