-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (24 loc) · 806 Bytes
/
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
from setuptools import setup
setup(
name='QuakeCL',
version='0.2.1',
license='MIT',
description='A command line tool that displays the recent earthquakes and aftershocks in Nepal.',
long_description=open('README.md').read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3'
],
author='Amit Chaudhary',
author_email='[email protected]',
url='https://github.com/amitness/QuakeCL',
install_requires=['requests'],
download_url='https://github.com/amitness/QuakeCL/tarball/0.2.1',
packages=['quakecl', ],
test_suite='quakecl.tests',
entry_points="""
[console_scripts]
earthquake=quakecl.earthquake:main
""",
)