-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (27 loc) · 1.1 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
from setuptools import setup # this is new
LONG_DESCRIPTION = '''A minimalist Python interface for the Gowalla API'''
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = 'gowalla rest simplejson wrapper social location'
setup(name='gowalla',
version='1.0',
description='Gowalla API wrapper',
long_description=LONG_DESCRIPTION,
author='Drew Yeaton',
author_email='[email protected]',
url='http://github.com/sentineldesign/python-gowalla/',
download_url='http://pypi.python.org/pypi/gowalla/',
packages=['gowalla'],
platforms = ['Platform Independent'],
license = 'GPLv3',
classifiers = CLASSIFIERS,
keywords = KEYWORDS,
requires = ['simplejson'],
)