forked from shaunduncan/giphypop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
21 lines (20 loc) · 848 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='giphypop',
version='0.1',
description=("Python wrapper for Giphy API"),
long_description=open('README.rst').read(),
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'],
keywords='python giphy api',
author='Shaun Duncan',
author_email='[email protected]',
url='http://www.github.com/shaunduncan/giphypop/',
license='MIT',
packages=find_packages(),
install_requires=['requests'],
py_modules=['giphypop'],
)