forked from reportportal/agent-python-pytest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (40 loc) · 1.29 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
49
import os
from setuptools import setup
def read_file(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
version = '2019.08.23'
tar_url = 'https://github.com/reportportal/agent-python-pytest/tarball/1.0.3'
requirements = [
'reportportal-client>=3.1.0',
'pytest>=3.0.7',
'six>=1.10.0',
'dill>=0.2.7.1',
]
setup(
name='pytest-reportportal',
version=version,
description='Agent for Reporting results of tests to the Report Portal',
long_description=read_file('README.rst'),
long_description_content_type='text/markdown',
author='Pavel Papou',
author_email='[email protected]',
url='https://github.com/reportportal/agent-python-pytest',
download_url=tar_url,
packages=['pytest_reportportal'],
install_requires=requirements,
license='Apache 2.0',
keywords=['testing', 'reporting', 'reportportal', 'pytest'],
classifiers=[
'Framework :: Pytest',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
entry_points={
'pytest11': [
'pytest_reportportal = pytest_reportportal.plugin',
]
},
)