https://github.com/praw-dev/praw
Raw File
Tip revision: 13685363927493fccee0d010e0a18d29fa06a2ca authored by Bryce Boe on 30 March 2012, 07:55:46 UTC
Remove hack from setup.py and version bump.
Tip revision: 1368536
setup.py
try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

setup(
    name='reddit',
    version='1.3.1',
    author='Timothy Mellor',
    author_email='timothy.mellor+pip@gmail.com',
    maintainer='Bryce Boe',
    maintainer_email='bbzbryce+pip@gmail.com',
    url='https://github.com/mellort/reddit_api',
    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.6',
                 'Programming Language :: Python :: 2.7',
                 'Programming Language :: Python :: 3.2',
                 'Topic :: Utilities'],
    license='GPLv3',
    keywords=['api', 'reddit'],
    packages=['reddit'],
    package_data={'': ['COPYING'], 'reddit': ['*.cfg']},
    install_requires=['six'])
back to top