-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
23 lines (22 loc) · 834 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-redactor',
version='0.0.4',
description='Imperavi Redactor (WYSIWYG editor) integration app for Django admin. http://imperavi.com/redactor/',
author='Kaspars Sprogis (darklow)',
author_email='[email protected]',
url='https://github.com/darklow/django-suit-redactor',
packages=['suit_redactor'],
zip_safe=False,
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'License :: Free for non-commercial use',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Environment :: Web Environment',
'Topic :: Software Development :: User Interfaces',
]
)