initial import
This commit is contained in:
commit
78c8f545fe
0
markitup/__init__.py
Normal file
0
markitup/__init__.py
Normal file
23
setup.py
Normal file
23
setup.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
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'],
|
||||
)
|
Loading…
Reference in New Issue
Block a user