-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.09 KB
/
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
37
38
39
40
41
42
43
44
[tool.poetry]
name = "alpha-zero-general-lib"
version = "0.1.0"
description = "A simplified, highly flexible, commented and (hopefully) easy to understand implementation of self-play based reinforcement learning based on the AlphaGo Zero paper turned into a library"
authors = ["Andreas Peldszus", "Surag Nair"]
license = "MIT"
packages = [
{ include = "alpha_zero_general", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.18.3"
tqdm = "^4.46.0"
ray = "^0.8.6"
cachetools = "^4.1.0"
elote = "^0.1.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.3.0"
black = "^19.10b0"
flake8 = "^3.7.9"
flake8-bugbear = "^20.1.4"
pylint = "^2.5.0"
pytest = "^5.4.1"
pytest-cov = "^2.8.1"
[tool.black]
line-length = 79
target_version = ["py37"]
exclude = "\\.git|env"
[tool.isort]
known_third_party = ["alpha_zero_general", "cachetools", "elote", "numpy", "pytest", "ray", "tqdm"]
line_length = 79
force_single_line = true
multi_line_output = 3
force_grid_wrap = 0
include_trailing_comma = true
use_parentheses = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"