forked from reportportal/client-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 893 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
24
25
26
"""Config for setup package client Python."""
from setuptools import setup, find_packages
__version__ = '5.0.4'
setup(
name='reportportal-client',
packages=find_packages(),
version=__version__,
description='Python client for Report Portal v5.',
author_email='[email protected]',
url='https://github.com/reportportal/client-Python',
download_url=('https://github.com/reportportal/client-Python/'
'tarball/%s' % __version__),
license='Apache 2.0.',
keywords=['testing', 'reporting', 'reportportal'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
install_requires=['requests>=2.4.2', 'six']
)