-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (56 loc) · 1.63 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
install_requires=[
"attrs==20.2.0",
"certifi==2020.6.20",
"chardet==3.0.4",
"click==7.1.2",
"clickclick==20.10.2",
"connexion[swagger-ui]==2.7.0",
"flask==1.1.2",
"flask-cors==3.0.9",
"idna==2.10",
"inflection==0.5.1",
"iniconfig==1.0.1",
"itsdangerous==1.1.0",
"jinja2==2.11.2",
"jsonschema==3.2.0",
"markupsafe==1.1.1",
"openapi-spec-validator==0.2.9",
"packaging==20.4",
"pluggy==0.13.1",
"py==1.9.0",
"pyparsing==2.4.7",
"pyrsistent==0.17.3",
"pytest==6.1.1",
"pytest-html==2.1.1",
"pytest-metadata==1.10.0",
"python-decouple==3.3",
"pyyaml==5.3.1",
"requests==2.24.0",
"six==1.15.0",
"swagger-ui-bundle==0.0.8",
"toml==0.10.1",
"urllib3==1.25.10",
"waitress==1.4.4",
"werkzeug==1.0.1",
],
name="pytest_gui",
version="0.0.1",
author="ned3144",
description="A GUI for pytest",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ned3144/pytest-gui",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
entry_points={"console_scripts": ["pytest-gui=pytest_gui.backend.main:cmd"]},
)