-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
28 lines (26 loc) · 961 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
[project]
name = "XtermGUI"
description = "A lightweight, expressive GUI framework for compatible terminals"
readme = "README.md"
version = "0.1.2"
authors = [
{ name = "Kieran Lock", email = "[email protected]" }
]
keywords = ["gui", "framework", "xterm", "zero-dependency", "terminal-based"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers"
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
GitHub = "https://github.com/Kieran-Lock/XtermGUI"
Documentation = "https://github.com/Kieran-Lock/XtermGUI/blob/main/DOCUMENTATION.md"
License = "https://github.com/Kieran-Lock/XtermGUI/blob/main/LICENSE"