-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 1.04 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
[tool.poetry]
name = "xwordlist"
version = "23.0.2"
description = "Software to help create, build and organize crossword puzzle word lists"
authors = ["Andrew Anker <aa@quid.pro>"]
license = "MIT"
readme = "README.md"
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment :: Puzzle Games",
]
include = ["xwl.py", "xwlconfig.py"]
repository = "https://github.com/aanker/xwordlist"
homepage = "https://xwl.ist"
documentation = "https://xwl.ist/help/"
[tool.poetry.dependencies]
python = "^3.9"
anyascii = "^0.3.1"
beautifulsoup4 = "^4.11.1"
prompt-toolkit = "^3.0.20"
requests = "^2.28.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
xwl = "xwordlist.xwordlist:main"
xwordlist = "xwordlist.xwordlist:main"