Files
Jeremy Carbaugh 539bdb04ac initial commit
2009-03-27 13:38:19 -04:00

26 lines
862 B
Python

from distutils.core import setup
long_description = open('README.markdown').read()
setup(
name='django-wordpress',
version="0.1",
description='Django models and views for a WordPress database',
long_description=long_description,
author='Jeremy Carbaugh',
author_email='jcarbaugh@sunlightfoundation.com',
url='http://github.com/sunlightlabs/django-wordpress/',
packages=['wordpress'],
package_data={'wordpress': ['templates/wordpress/*.html']},
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"],
)