-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (45 loc) · 1.68 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pytest-aggreport',
version='0.1.5',
author='Wayne Hong',
author_email='[email protected]',
maintainer='Wayne Hong',
maintainer_email='[email protected]',
license='MIT',
url='https://github.com/hdw868/pytest-aggreport',
description=(
'pytest plugin for pytest-repeat that generate aggregate report of '
'the same test cases with additional statistics details.'),
long_description=long_description,
long_description_content_type="text/markdown",
packages=['pytest_aggreport'],
package_data={'pytest_aggreport': ['resources/*']},
python_requires='>=3.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=['pytest>=6.2.2', 'beautifultable>=1.0.1',
'py>=1.8.0', 'pytest-repeat>=0.8.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
entry_points={
'pytest11': [
'aggreport = pytest_aggreport.plugin',
],
},
)