-
Notifications
You must be signed in to change notification settings - Fork 58
/
pyproject.toml
124 lines (99 loc) · 2.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[build-system]
# requires = ["setuptools", "setuptools-scm"]
# build-backend = "setuptools.build_meta"
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
name = "PyTermGUI"
authors = [ { name = "Balázs Cene", email= "bczsalba@gmail.com" } ]
description = """\
Python TUI framework with mouse support, modular widget system, \
customizable and rapid terminal markup language and more!\
"""
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = ["wcwidth", "typing_extensions"]
keywords = [
"terminal",
"user-interface",
"framework",
"UI",
"TUI",
"markup",
"xterm",
"ANSI",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: IPython",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
"Topic :: Software Development :: Libraries",
"Topic :: Terminals",
"Topic :: Text Processing :: Markup",
]
dynamic = ["readme", "version"]
[project.urls]
homepage = "https://github.com/bczsalba/PyTermGUI"
repository = "https://github.com/bczsalba/PyTermGUI"
documentation = "https://ptg.bczsalba.com"
[project.optional-dependencies]
yaml = ["PyYAML"]
[project.scripts]
ptg = "pytermgui.cmd:main"
[tool.hatch.version]
path = "pytermgui/__init__.py"
[tool.hatch.build]
include = [
"/pytermgui",
"/tests",
"README.md",
"CHANGELOG.md",
]
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "README.md"
end-before = "\n<!-- HATCH README END -->"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
text = """
## Latest release
#"""
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "CHANGELOG.md"
end-before = "\n<!-- HATCH README END -->"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
text = "\n\nRead the full changelog [here](https://github.com/bczsalba/pytermgui/blob/master/CHANGELOG.md).\n\n"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "CHANGELOG.md"
start-after = "\n<!-- HATCH URI DEFINITIONS START -->"
[tool.mypy]
show_error_codes = true
[tool.pylint.messages_control]
disable = [
"fixme",
# If this is a problem, it should occur during runtime
"not-callable"
]
[tool.pylint.basic]
good-names = ["i", "j", "k", "ex", "Run", "_", "x" ,"y", "fd"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"def __fancy_repr__",
"def __repr__",
]
omit = [
"pytermgui/cmd.py"
]
[tool.isort]
profile = "black"