forked from darklow/django-suit-ckeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 800 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='django-suit-ckeditor',
version='0.0.2',
description='CKEditor (WYSIWYG editor) integration app for Django admin. http://ckeditor.com',
author='Kaspars Sprogis (darklow)',
author_email='[email protected]',
url='https://github.com/darklow/django-suit-ckeditor',
packages=['suit_ckeditor'],
zip_safe=False,
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'License :: OSI Approved',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Environment :: Web Environment',
'Topic :: Software Development :: User Interfaces',
]
)