-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
50 lines (45 loc) · 1.3 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
[tool.poetry]
name = "chessli"
homepage = "https://github.com/pwenker/chessli"
documentation = "https://pwenker.github.io/chessli"
version = "0.2.4"
description = "A free and open source chess improvement app that combines the power of lichess and anki"
authors = ["Pascal Wenker <[email protected]>"]
readme = "readme.md"
license = "MIT"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Games/Entertainment",
"Typing :: Typed",
]
[tool.poetry.scripts]
chessli = "chessli.cli.main:app"
[tool.poetry.dependencies]
python = "^3.7.1"
python-chess = "^1.999"
typer = "^0.3.2"
rich = "^9.9.0"
omegaconf = "^2.0.6"
berserk = "^0.10.0"
pandas = "^1.2.0"
matplotlib = "^3.3.3"
seaborn = "^0.11.1"
appdirs = "^1.4.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
pytest-cov = "^2.11.1"
isort = "^5.7.0"
black = "^20.8b1"
mypy = "^0.790"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"