-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
48 lines (42 loc) · 1.2 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
41
42
43
44
45
46
47
48
[tool.poetry]
name = "pqcli"
version = "1.0.2"
description = "Progress Quest: the CLI edition"
authors = ["Marcin Kurczewski <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rr-/pq-cli.git"
classifiers = [
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Games/Entertainment :: Simulation",
]
packages = [
{ include = "pqcli" },
]
[tool.poetry.scripts]
pqcli = 'pqcli.__main__:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
xdg-base-dirs = "^6.0.0"
urwid = "^2.1.2"
urwid-readline = "^0.13"
windows-curses = {version = "^2.3.0", platform = "Windows"}
[tool.poetry.dev-dependencies]
pre-commit = "^2.16.0"
[tool.black]
line-length = 79
[tool.isort]
known_first_party = "pqcli"
multi_line_output = 3
include_trailing_comma = true