forked from selectel/pyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·64 lines (50 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
63
64
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
here = os.path.abspath(os.path.dirname(__file__))
DESCRIPTION = "Simple VTXXX-compatible terminal emulator."
try:
LONG_DESCRIPTION = open(os.path.join(here, "README")).read()
except IOError:
LONG_DESCRIPTION = ""
CLASSIFIERS = (
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
)
class PyTest(TestCommand):
"""Unfortunately :mod:`setuptools` support only :mod:`unittest`
based tests, thus, we have to overider build-in ``test`` command
to run :mod:`pytest`.
"""
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
sys.exit(pytest.main(self.test_args + ["./tests"]))
setup(name="pyte",
version="0.4.9",
packages=["pyte"],
cmdclass={"test": PyTest},
tests_require=["pytest"],
platforms=["any"],
author="Sergei Lebedev",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
keywords=["vt102", "vte", "terminal emulator"],
url="https://github.com/selectel/pyte"
)