-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.11 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
[tool.poetry]
name = "dokusan"
version = "0.1.0"
description = "Sudoku generator and solver with a step-by-step guidance"
keywords = ["sudoku", "sudoku-solver", "sudoku-generator", "solver", "generator"]
readme = "README.rst"
authors = ["Aleksei Maslakov <[email protected]>"]
license = "GPL-3.0"
packages = [
{ include = "dokusan", from = "src" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment :: Puzzle Games",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
tox = "^3.14"
pre-commit = "^1.20"
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
known_first_party = ["dokusan"]
default_section = "THIRDPARTY"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"