-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (37 loc) · 1.44 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
from setuptools import setup, find_packages
setup(
name="network-tests",
version="0.1.5",
# packages=find_packages(),
packages=['ping', 'bandwidth'],
scripts=['ping/ping_test.py', \
'bandwidth/download_speed.py', \
'bandwidth/upload_speed.py',\
'download-tester',\
'upload-tester', \
'ping-tester',\
'common.py'],
# scripts=['ping-test','download-speed','upload-speed'],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=['requests', \
'numpy', \
'pingparsing', \
'statistics'],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['hosts.txt'],
# And include any *.msg files found in the 'hello' package, too:
# 'hello': ['*.msg'],
},
# metadata for upload to PyPI
author="Juan Luis Baptiste",
author_email="[email protected]",
description="Collection of scripts to do network tests like \
download/upload speeds, network latency (ping) and store \
results in a CSV file.",
license="GPLv3",
keywords="ping bandwidth download upload test",
url="https://github.com/juanluisbaptiste/network-tests",
# could also include long_description, download_url, classifiers, etc.
)