-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
46 lines (40 loc) · 1.3 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
from os import path
import sys
from setuptools import setup
# Open encoding isn't available for Python 2.7 (sigh)
if sys.version_info < (3, 0):
from io import open
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pytest-json-report',
description='A pytest plugin to report test results as JSON files',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['pytest_jsonreport'],
author='numirias',
author_email='[email protected]',
version='1.5.0',
url='https://github.com/numirias/pytest-json-report',
license='MIT',
install_requires=[
'pytest>=3.8.0',
'pytest-metadata',
],
entry_points={
'pytest11': [
'pytest_jsonreport = pytest_jsonreport.plugin',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Pytest',
],
)