-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.15 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
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "white-rabbit"
version = "0.1.4"
description = "The White Rabbit chess engine - A neural network engine."
authors = ["Virinas-code <[email protected]>"]
license = "GPL-3.0"
packages = [{include = "whiterabbit"}]
[tool.poetry.dependencies]
python = "^3.11,<3.12"
python-chess = "^1.999"
numpy = "^1.24.1"
psutil = "^5.9.4"
chess = "^1.10.0"
PyYAML = "^6.0"
requests = "^2.32.3"
rich = {extras = ["jupyter"], version = "^12.6.0"}
setuptools = "^75.2.0"
click = "^8.1.7"
backoff = "^2.2.1"
textual = "^0.8.2"
filelock = "^3.9.0"
matplotlib = "^3.9.2"
[tool.poetry.dev-dependencies]
black = "^24.3.0"
pylint = "^2.15.5"
mypy = "^0.991"
py-spy = "^0.3.14"
jupyter = "^1.1.1"
notebook = "^6.5.2"
pytest-benchmark = "^4.0.0"
austin-tui = "^1.2.3"
flake8 = "^5.0.4"
pyinstrument = "^4.4.0"
textual = {extras = ["dev"], version = "^0.8.2"}
[tool.poetry.scripts]
white-rabbit = 'whiterabbit.__main__:main'
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
py = "^1.11.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
[mypy]
check_untyped_defs = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"