-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
36 lines (31 loc) · 874 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
# https://python-poetry.org/docs/pyproject/
[tool.poetry]
name = "mancala"
version = "0.3.0"
description = "Mancala written in Python, playable in CLI (GUI coming soon)!"
authors = ["Qiushi Pan <qiu.gits@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/qqhann/Mancala"
repository = "https://github.com/qqhann/Mancala"
keywords = ["mancala", "game", "gym", "reinforcement learning", "kalah"]
[tool.poetry.scripts]
mancala = "mancala.cli:cli"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.20.1"
gym = "^0.21.0"
pandas = "^1.2.4"
tqdm = "^4.60.0"
torch = "^1.10.1"
[tool.poetry.dev-dependencies]
isort = "^5.7.0"
black = "^20.8b1"
mypy = "^0.812"
rope = "^0.18.0"
pylint = "^2.7.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[metadata]
long_description_content_type = "text/markdown"