-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
35 lines (31 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "terminal_layout"
version = "3.0.0"
authors = [
{ name="gojuukaze", email="[email protected]" },
]
description = "The project help you to quickly build layouts in terminal (命令行ui布局工具)"
readme = "README.rst"
requires-python = ">=3.5"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 5 - Production/Stable",
"Topic :: Terminals",
]
dependencies = [
"colorama==0.4.6",
'colored==1.4.4',
]
[project.urls]
"Homepage" = "https://github.com/gojuukaze/terminal_layout"
"Bug Tracker" = "https://github.com/gojuukaze/terminal_layout/issues"
"Documentation"="https://doc.ikaze.cn/terminal_layout"
[tool.setuptools.packages.find]
include = ["terminal_layout*"]
exclude = ["demo*", "tests*"]