-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (26 loc) · 869 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
27
28
29
30
from setuptools import setup, find_packages
from tumblr import __version__
setup (
name = 'TumblrAPI',
version = __version__,
py_modules = [ 'tumblr' ],
requires = [
'httplib2 (>= 0.2)',
'ElementTree (>= 1.2)'
],
author = 'SNF Labs',
author_email = '[email protected]',
description = 'Tumblr API client for Python',
license = 'MIT',
keywords = 'tumblr api webservice parser',
url = 'http://labs.spaceshipnofuture.org/tumblrapi/',
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet"
]
)