-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
34 lines (33 loc) · 1.07 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
from setuptools import setup, find_packages
from tumblelog import __version__
setup(
name='django-tumblelog',
version=__version__,
description='A simple and extensible tumblelog engine for Django',
keywords='django, blog, tumblelog, tumblr',
author='Chuck Harmston',
author_email='[email protected]',
url='https://github.com/chuckharmston/django-tumblelog',
license='MIT',
package_dir={
'tumblelog': 'tumblelog',
},
packages=find_packages(),
install_requires=[
'python-oembed==0.2.1',
'PIL',
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
],
)