-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["flit_core"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = ["docs/*.rst", "docs/*.py", "examples/", "tests/", "AUTHORS*", "CHANGES*", "LICENSE*"]
exclude = ["**/__pycache__/", "**/.*/", "*.lock"]
[tool.mypy]
show_error_codes = true
strict = true
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[dependency-groups]
dev = [
"pytest",
"pyperf==1.7.1",
"mypy==1.14.1",
]
[project]
name = "pyte"
dynamic = ["version"]
description = "Simple VTXXX-compatible terminal emulator."
readme = "README.rst"
license = "LGPL-3.0-only"
requires-python = ">=3.10"
authors = [
{ name = "Sergei Lebedev", email = "[email protected]" },
]
keywords = [
"terminal emulator",
"vt102",
"vte",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
]
dependencies = [
"wcwidth",
]
[project.urls]
Homepage = "https://github.com/selectel/pyte"