-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 897 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 897 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cookworm"]
[project]
name = "cookworm"
version = "4.1.0"
keywords = ["puzzles", "app", "games", "BookWorm", "mod", "modding", "editor"]
authors = [
{ name="Wilbur Jaywright", email="zargulthewizard@outlook.com" },
]
description = "The BookWorm Deluxe wordlist and popdefs editor"
readme = "README.md"
requires-python = ">=3.11.2"
dependencies = [
"nltk",
"pyyaml",
"wordfreq",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
[project.urls]
Homepage = "https://github.com/thelabcat/cookworm"
Issues = "https://github.com/thelabcat/cookworm/issues"
[project.gui-scripts]
cookworm = "cookworm.__main__:main"