-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (45 loc) · 1.83 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
49
50
51
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "terminedia_paint"
dynamic = ["version"]
license = {text = "LGPLv3+"}
authors = [{name = "João S. O. Bueno", email = "[email protected]"}]
keywords = ["terminal", "cmd", "posix", "xterm", "ANSI", "color", "ASCIIart", "unicode", "drawing", "art"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics",
"Topic :: Terminals",
"Topic :: Terminals :: Terminal Emulators/X Terminals"
]
description = "Application to draw ASCIIart images interactively on the posix terminal"
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = ["pillow>=6.0.0", "terminedia>=0.4.2"]
[project.urls]
"Source Code" = "https://github.com/jsbueno/terminedia-paint"
[project.optional-dependencies]
images = ["pillow>=6.0.0"]
tests = ["pytest"]
[project.scripts]
terminedia-paint = "terminedia_paint:run"
[tool.setuptools]
include-package-data = true
packages = ["terminedia_paint"]
[tool.setuptools.dynamic]
version = {attr = "terminedia_paint.__version__"}