forked from ryanc414/pytest_commander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.28 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
"""Setup script for PyTest web UI."""
import setuptools
def main():
with open("README.md") as f:
long_description = f.read()
setuptools.setup(
name="pytest_commander",
version="2.7.0",
author="Ryan Collingham",
author_email="[email protected]",
description="An interactive GUI test runner for PyTest",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ryanc414/pytest_commander",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"pytest>=6.2.4, <7.0.0",
"marshmallow>=3.11.1, <4.0.0",
"marshmallow-enum>=1.5.1, <2.0.0",
"flask>=1.1.2, <2.0.0",
"flask_socketio>=5.0.1, <6.0.0",
"eventlet>=0.31.0, <1.0.0",
"watchdog>=2.1.0, <3.0.0",
],
include_package_data=True,
entry_points={
"console_scripts": ["pytest_commander = pytest_commander.__main__:main"]
},
)
if __name__ == "__main__":
main()