25 lines
787 B
Python
25 lines
787 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='django-markitup',
|
|
version='0.2.2',
|
|
description='Django integration with the MarkItUp universal markup editor',
|
|
long_description=open('README.txt').read(),
|
|
author='Carl Meyer',
|
|
author_email='carl@dirtcircle.com',
|
|
url='http://launchpad.net/django-markitup',
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Framework :: Django',
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
setup_requires=['setuptools_bzr'],
|
|
)
|