-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
26 lines (24 loc) · 918 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='python-flickr',
version='0.4.0',
install_requires=['httplib2', 'oauth2', 'simplejson'],
author='Mike Helmick',
author_email='me@michaelhelmick.com',
license='MIT License',
url='https://github.com/michaelhelmick/python-flickr/',
keywords='python flickr oauth api',
description='A Python Library to interface with Flickr REST API, OAuth & JSON Responses',
long_description=open('README.rst').read(),
download_url="https://github.com/michaelhelmick/python-flickr/zipball/master",
py_modules=["flickr"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Chat',
'Topic :: Internet'
]
)