speedtest-cli-pub/setup.py
Matt Martz cbb249b96d Don't use urandom for the upload data source
Using urandom limits the upload speed due to the generation speed of
random characters and causes high CPU usage.

See #13
Fixes #26
2013-08-08 09:52:54 -05:00

22 lines
566 B
Python

#!/usr/bin/env python
import setuptools
setuptools.setup(
name='speedtest-cli',
version='0.2.1',
description=('Command line interface for testing internet bandwidth using '
'speedtest.net'),
author='Matt Martz',
author_email='matt@sivel.net',
url='https://github.com/sivel/speedtest-cli',
license='Apache License, Version 2.0',
py_modules=['speedtest_cli'],
entry_points={
'console_scripts': [
'speedtest=speedtest_cli:main',
'speedtest-cli=speedtest_cli:main'
]
}
)