-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (51 loc) · 1.65 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
from setuptools import find_packages, setup
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding="utf-8").read()
setup(
name="pytest-tui",
version="2.1.0",
author="Jeff Wright",
author_email="[email protected]",
license="MIT",
url="https://github.com/jeffwright13/pytest-tui",
description="Text User Interface (TUI) and HTML report for Pytest test runs",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages(),
py_modules=["pytest_tui"],
python_requires=">=3.8",
install_requires=[
"ansi2html==1.8.0",
"faker==18.3.1",
"json2table==1.1.5",
"pytest-metadata==2.0.4",
"single-source==0.3.0",
"strip-ansi==0.1.1",
"textual==0.1.18",
],
setup_requires=["setuptools_scm"],
include_package_data=True,
classifiers=[
"Framework :: Pytest",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
keywords="pytest pytest-plugin testing tui textual html",
entry_points={
"pytest11": ["pytest_tui = pytest_tui.plugin"],
"console_scripts": [
"tui = pytest_tui.tui_gen:main",
"tuih = pytest_tui.html_gen:main",
],
},
)