speedtest-cli/setup.py

23 lines
614 B
Python
Raw Normal View History

2013-07-27 00:25:49 +02:00
#!/usr/bin/env python
import setuptools
setuptools.setup(
name='speedtest-cli',
version='0.2.1',
2013-07-27 00:25:49 +02:00
description=('Command line interface for testing internet bandwidth using '
'speedtest.net'),
long_description=open('README.rst').read(),
2013-07-27 00:25:49 +02:00
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'
]
}
)