forked from reportportal/client-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 986 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
27
28
29
"""Config for setup package client Python."""
from setuptools import setup, find_packages
__version__ = '5.0.12'
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='reportportal-client',
packages=find_packages(exclude=('tests', 'tests.*')),
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=requirements
)