forked from michaelhelmick/python-tumblpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 1.19 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
38
#!/usr/bin/env python
from setuptools import setup
import os
import sys
__author__ = 'Mike Helmick <[email protected]>'
__version__ = '1.1.0'
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='python-tumblpy',
version=__version__,
install_requires=['requests>=1.2.2', 'requests_oauthlib>=0.3.2'],
author='Mike Helmick',
author_email='[email protected]',
license=open('LICENSE').read(),
url='https://github.com/michaelhelmick/python-tumblpy/',
keywords='python tumblpy tumblr oauth api',
description='A Python Library to interface with Tumblr v2 REST API & OAuth',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
download_url='https://github.com/michaelhelmick/python-tumblpy/zipball/master',
include_package_data=True,
packages=['tumblpy'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Chat',
'Topic :: Internet'
],
)