mirror of
https://github.com/kennethreitz-archive/django-wordpress.git
synced 2026-06-05 23:50:20 +00:00
26 lines
862 B
Python
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"],
|
|
) |