forked from praw-dev/praw
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (33 loc) · 1.34 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
32
33
34
35
36
37
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = re.search("__version__ = '([^']+)'",
open('reddit/__init__.py').read()).group(1)
setup(
name='reddit',
version=version,
author='Timothy Mellor',
author_email='[email protected]',
maintainer='Bryce Boe',
maintainer_email='[email protected]',
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'])