-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (28 loc) · 1003 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (28 loc) · 1003 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as f:
README = f.read()
setup(
name='robotframework_iperf3',
version='1.1.0',
description='Robot Framework Iperf3 library',
long_description=README,
author='Alexander Klose',
author_email='alexander.klose@devzero.io',
url='https://github.com/scathaig/robotframework-iperf3',
python_requires=">=3.8",
license='Apache License 2.0',
install_requires=[
'robotremoteserver>=1.1'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Framework :: Robot Framework :: Library',
],
keywords='testing testautomation robotframework iperf iperf3',
packages=find_packages(),
include_package_data=True,
)