-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
37 lines (30 loc) · 1.16 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""Setup script of zinnia-wysiwyg-tinymce"""
from setuptools import find_packages
from setuptools import setup
import zinnia_tinymce
setup(
name='zinnia-wysiwyg-tinymce',
version=zinnia_tinymce.__version__,
description='TinyMCE for editing entries in django-blog-zinnia',
long_description=open('README.rst').read(),
keywords='django, zinnia, wysiwyg, tinymce',
author=zinnia_tinymce.__author__,
author_email=zinnia_tinymce.__email__,
url=zinnia_tinymce.__url__,
packages=find_packages(exclude=['demo_zinnia_tinymce']),
classifiers=[
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules'],
license=zinnia_tinymce.__license__,
include_package_data=True,
zip_safe=False,
install_requires=['django-tinymce<=2.2.0',
'sorl-thumbnail']
)