-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
41 lines (36 loc) · 1.18 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import codecs
from setuptools import setup, find_packages
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-html-reporter",
version="0.3.0",
author="Prashanth Sams",
author_email="[email protected]",
maintainer="Prashanth Sams",
maintainer_email="[email protected]",
license="MIT",
url="https://github.com/prashanth-sams/pytest-html-reporter",
description="Generates a static html report based on pytest framework",
long_description=read("README.rst"),
keywords=["pytest", "py.test", "html", "reporter", "report"],
packages=find_packages(),
python_requires=">=3.5",
install_requires=["pytest", "Pillow"],
classifiers=[
"Framework :: Pytest",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
entry_points={
"pytest11": [
"reporter = pytest_html_reporter.plugin",
],
},
)