-
-
Notifications
You must be signed in to change notification settings - Fork 466
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more complete meta-data to setup.py and performed a mini-version …
…bump.
- Loading branch information
Showing
1 changed file
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
description='A Python wrapper for the Reddit API', | ||
maintainer='Bryce Boe', | ||
maintainer_email='[email protected]', | ||
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']}) |