forked from pwaller/pyfiglet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (26 loc) · 844 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 = "textual-pyfiglet"
version = "0.5.5"
description = "A Widget implementation of PyFiglet for Textual"
authors = ["edward-jazzhands <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/edward-jazzhands/textual-pyfiglet"
[tool.poetry.dependencies]
python = ">=3.10.0,<4.0"
textual = ">=0.74.0"
platformdirs = "^4.3.6"
textual-pyfiglet-fonts = {version = "^0.2.1", optional = true}
[tool.poetry.extras]
fonts = ["textual-pyfiglet-fonts"]
[tool.poetry.group.fonts.dependencies]
textual-pyfiglet-fonts = "^0.2.1"
[tool.poetry.group.dev.dependencies]
textual-dev = "^1.3.0"
pytest = ">=7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# This is for running the demo
[tool.poetry.scripts]
textual-pyfiglet = "textual_pyfiglet.__main__:main"