-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.41 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xpuz"
version = "2.2.109"
description = "Design and play procedurally generated crosswords"
license = { text = "MIT" }
authors = [
{ name = "Tomas Vana" }
]
urls = { "Homepage" = "https://github.com/tomasvana10/xpuz" }
classifiers = [
"Topic :: Multimedia",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: JavaScript",
"Topic :: Text Processing :: Markup :: HTML",
"Framework :: Flask",
"Topic :: Software Development :: Localization",
"Topic :: Education",
"Topic :: Games/Entertainment"
]
keywords = ["crosswords", "procedural generation", "games"]
dependencies = [
"Babel",
"customtkinter",
"Flask",
"flask_babel",
"Pillow",
"regex",
"platformdirs",
"pathvalidate",
"CTkToolTip",
"pywebview",
]
[project.optional-dependencies]
pdf = [
"pycairo",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.entry-points.gui_scripts]
xpuz-ctk = "xpuz.__main__:main"
[project.readme]
file = "README.md"
content-type = "text/markdown"