-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 946 Bytes
/
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
[tool.poetry]
name = "tui-map-generator"
version = "0.1.8"
description = "Height map generator using diamond square with TUI interface"
authors = ["Hubert Nafalski <[email protected]>"]
license = "GPL-3.0-only"
homepage = "https://github.com/HubertReX/tui-map-generator"
repository = "https://github.com/HubertReX/tui-map-generator"
readme = "README.md"
packages = [{ include = "tui_map_generator", from = "src" }]
include = [
{ path = "src/tui_map_generator/maps/legend.xp", format = ["sdist", "wheel"] }
]
# [tools.py2app.bundle.main]
# script = "src/tui_map_generator/__main__.py"
# semi-standalone = true
[tool.poetry.scripts]
tui-map-generator = "tui_map_generator.__main__:generate"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
rich = "^13.6.0"
trogon = "^0.5.0"
rich-pixels = "^2.1.1"
pyrexpaint = "^0.0.2"
numpy = "^1.26.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"