-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.42 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
55
56
57
58
59
60
61
62
[project]
name = "acid-chess"
dynamic = ["version"]
authors = [
{ name="Bernhard Janetzki", email="[email protected]" },
]
description = "The Chess Computer for nerds, by nerds."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["python", "chess", "ai", "neural-network", "image-processing", "pytorch"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"albumentations==1.3.0",
"CairoSVG==2.7.0",
"chess==1.9.4",
"gTTS==2.3.1",
"pyobjc==9.0.1; sys_platform=='darwin'",
"imutils==0.5.4",
"labelme2coco==0.2.2",
"lightning==2.0.0",
"numpy==1.24.2",
"Pillow==9.4.0",
"playsound==1.3.0",
"pycocotools==2.0.6",
"PySide6==6.4.2",
"python_dateutil==2.8.2",
"pytorch_lightning==1.9.4",
"qimage2ndarray==1.10.0",
"torchmetrics==0.11.4",
"torchvision==0.15.1",
]
[project.urls]
"Homepage" = "https://github.com/ierror/acid-chess"
"Bug Tracker" = "https://github.com/ierror/acid-chess/issues"
[project.scripts]
acid = "acid.app.__main__:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["acid"]
[tool.setuptools.dynamic]
version = {attr = "acid.__version__"}
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[tool.flake8]
ignore = ['E501', 'W503']