-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 2.26 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (56 loc) · 2.26 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "puzzle_sheet_generator.__version__"}
[project]
name = "puzzle_sheet_generator"
authors = [
{name = "Lukas Malte Monnerjahn"},
]
description = "An application to generate PDF chess puzzle sheets"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = ["chess", "chess puzzle"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"chess",
"cliff",
"lxml",
"pandas",
"platformdirs",
"reportlab",
"svglib"
]
dynamic = ["version"]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages
include = ["puzzle_sheet_generator*", "config*"] # package names should match these glob patterns
exclude = ["puzzle_sheet_generator.test*"] # exclude packages matching these glob patterns
namespaces = false # to disable scanning PEP 420 namespaces
[project.scripts]
puzzle_sheet_generator = "puzzle_sheet_generator.psg_cliff:main"
# the cli entry points become the user commands in the interactive cli app
[project.entry-points."puzzle_sheet_generator.cli"]
config = "puzzle_sheet_generator.cli.config_commands:ChangeConfig"
config-default = "puzzle_sheet_generator.cli.config_commands:RestoreDefaultConfig"
delete = "puzzle_sheet_generator.cli.delete_command:Delete"
print = "puzzle_sheet_generator.cli.print_command:Print"
add-to = "puzzle_sheet_generator.cli.sheet_commands:AddTo"
copy = "puzzle_sheet_generator.cli.sheet_commands:Copy"
remove = "puzzle_sheet_generator.cli.sheet_commands:Remove"
reorder = "puzzle_sheet_generator.cli.sheet_commands:Reorder"
name = "puzzle_sheet_generator.cli.sheet_commands:Name"
header = "puzzle_sheet_generator.cli.sheet_commands:Header"
save = "puzzle_sheet_generator.cli.sheet_commands:Save"
load = "puzzle_sheet_generator.cli.sheet_commands:Load"
list = "puzzle_sheet_generator.cli.show_commands:List"
show = "puzzle_sheet_generator.cli.show_commands:Show"
filter = "puzzle_sheet_generator.cli.store_commands:Filter"
sample = "puzzle_sheet_generator.cli.store_commands:Sample"
union = "puzzle_sheet_generator.cli.store_commands:Union"