forked from brianriley/weather-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 841 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
26
27
28
29
30
from distutils.core import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='weathercli',
version='2.3.1',
author='Brian Riley',
author_email='brian@btriley.com',
description="A command line weather tool",
url='https://github.com/brianriley/weather-cli',
py_modules=['weathercli'],
long_description=read('README.mkd'),
install_requires=['clint==0.3.4'],
scripts=['bin/weather'],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'
]
)