Local init

This commit is contained in:
2023-01-30 18:53:20 +01:00
commit f2801d76fe
3 changed files with 2336 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[tool.poetry]
name = "reversi"
version = "0.1.0"
description = ""
authors = ["Philipp Horstenkamp <philipp@horstenkamp.de>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.10.*"
jupyter = "^1.0.0"
numpy = "^1.24.1"
pytest = "^7.2.1"
ipytest = "^0.13.0"
scipy = "^1.10.0"
tqdm = "^4.64.1"
[tool.poetry.group.build.dependencies]
blackcellmagic = "^0.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"