-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.02 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
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
# Just setting the profile will use the `black` default line length of 88, so
# need to override line length as well
line_length = 79
[tool.poetry]
name = "alicechess"
version = "3.0.0"
description = "A Python package to play Alice Chess"
authors = ["Joseph Lou <joseph.d.lou@gmail.com>"]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/josephlou5/alicechess"
repository = "https://github.com/josephlou5/alicechess"
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
packages = [{include = "alicechess", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
Pillow = "^9.5.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
pylint = "^2.17.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"