-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.36 KB
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
49
50
51
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bangen"
version = "2.2.5"
description = "ASCII banner rendering engine with a tiered effect library, live TUI, and transparent PNG/GIF export."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "programmersd21" }]
keywords = ["ascii", "banner", "terminal", "pyfiglet", "rich", "gradient", "tui"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Terminals",
]
dependencies = [
"pyfiglet>=1.0",
"rich>=13.0",
"Pillow>=10.0",
"typer>=0.12",
"pyperclip>=1.11.0",
]
[project.optional-dependencies]
images = []
all = []
[project.urls]
Homepage = "https://github.com/programmersd21/bangen"
Repository = "https://github.com/programmersd21/bangen"
Issues = "https://github.com/programmersd21/bangen/issues"
Changelog = "https://github.com/programmersd21/bangen/blob/main/CHANGELOG.md"
[project.scripts]
bangen = "bangen.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["bangen*"]
[tool.setuptools]
py-modules = ["main"]