-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "runtui"
version = "0.1.3"
description = "Modern pure-Python cross-platform TUI framework with RAD designer, themes, mouse support, embedded terminals, and rich widgets"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
]
keywords = ["tui", "terminal-ui", "curses-alternative", "rad", "mouse", "widgets"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
"send2trash",
"Pillow",
"pyte",
"pywinpty; platform_system == 'Windows'"
]
[project.urls]
Homepage = "https://github.com/erickrus/runtui"
Repository = "https://github.com/erickrus/runtui"
"Bug Tracker" = "https://github.com/erickrus/runtui/issues"
Documentation = "https://github.com/erickrus/runtui#readme"
[tool.hatch.build.targets.wheel]
packages = ["runtui"]