forked from raslam/django-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 896 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
from distutils.core import setup
import wordpress
long_description = open('README.rst').read()
setup(
name='the-real-django-wordpress',
version=wordpress.__version__,
description='Django models and views for a WordPress database.',
long_description=long_description,
author='Jeremy Carbaugh',
author_email='[email protected]',
url='http://github.com/sunlightlabs/django-wordpress/',
packages=['wordpress'],
package_data={'wordpress': ['templates/wordpress/*']},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Environment :: Web Environment',
],
license='BSD License',
platforms=["any"],
)