-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 807 Bytes
/
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
from setuptools import setup
setup(
name="pytest-custom-report",
version="1.0.1",
url="https://github.com/wimglenn/pytest-custom-report",
description="Configure the symbols displayed for test outcomes",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst; charset=UTF-8",
author="Wim Glenn",
author_email="[email protected]",
license="MIT",
install_requires=["pytest"],
py_modules=["pytest_custom_report"],
entry_points={"pytest11": ["pytest-custom-report=pytest_custom_report"]},
classifiers=[
"Framework :: Pytest",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
options={"bdist_wheel": {"universal": True}},
)