Skip to content

Commit

Permalink
Add more complete meta-data to setup.py and performed a mini-version …
Browse files Browse the repository at this point in the history
…bump.
  • Loading branch information
bboe committed Dec 17, 2011
1 parent 737306e commit 74bb962
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions setup.py
Expand Up @@ -6,12 +6,24 @@

setup(
name='reddit',
version='1.1.1',
packages=['reddit'],
package_data={'reddit': ['*.cfg']},
author='mellort',
version='1.1.2',
author='Timothy Mellor',
author_email='timothy.mellor+pip@gmail.com',
description='A Python wrapper for the Reddit API',
maintainer='Bryce Boe',
maintainer_email='bbzbryce+pip@gmail.com',
url='https://github.com/mellort/reddit_api',
keywords=['reddit']
)
description='A wrapper for the Reddit API',
long_description=('Please see the `documentation on github '
'<https://github.com/mellort/reddit_api>`_.'),
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Utilities'],
license='GPLv3',
keywords=['api', 'reddit'],
packages=['reddit'],
package_data={'reddit': ['*.cfg']})

0 comments on commit 74bb962

Please sign in to comment.