24 lines
737 B
Python
24 lines
737 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name='django-markitup',
|
||
|
version='0.1.0',
|
||
|
description='Django integration with the MarkItUp universal markup editor',
|
||
|
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,
|
||
|
install_requires=['setuptools'],
|
||
|
)
|