-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (23 loc) · 1 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
from setuptools import setup, find_packages
setup(
name='testing-harness',
version='0.1',
description='ESnet Testing Harness',
url='https://github.com/esnet/testing-harness',
author='Ezra Kissel',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'License :: OSI Approved :: Apache License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='testing harness protocol iperf3 perfsonar',
packages=find_packages(),
install_requires=['requests', 'pyyaml', 'pika', 'ping3', 'tabulate']
# note: summarize_iperf3.py script all needs python-pptx, but install of that fails on CentOS7
#install_requires=['requests', 'pyyaml', 'pika', 'ping3', 'tabulate', 'python-pptx']
)