-
Notifications
You must be signed in to change notification settings - Fork 102
/
setup.py
executable file
·52 lines (41 loc) · 1.49 KB
/
setup.py
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
#! /usr/bin/env python
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
DESCRIPTION = "Simple VTXXX-compatible terminal emulator."
try:
with open(os.path.join(here, "README")) as f:
LONG_DESCRIPTION = f.read()
except IOError:
LONG_DESCRIPTION = ""
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
]
setup(name="pyte",
version="0.8.2",
packages=["pyte"],
install_requires=["wcwidth"],
setup_requires=[],
tests_require=["pytest"],
python_requires=">=3.8",
platforms=["any"],
package_data={"pyte": ["py.typed"]},
author="Sergei Lebedev",
author_email="superbobry@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
keywords=["vt102", "vte", "terminal emulator"],
url="https://github.com/selectel/pyte")