-
Notifications
You must be signed in to change notification settings - Fork 71
/
setup.py
29 lines (28 loc) · 1.04 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
from setuptools import setup
setup(
name='django-froala-editor',
version='4.3.1',
author='Dipesh Acharya',
author_email='[email protected]',
maintainer='Froala Labs',
packages=['froala_editor'],
url='http://github.com/froala/django-froala-editor/',
license='BSD License',
description='django-froala-editor package helps integrate Froala WYSIWYG HTML editor with Django.',
long_description=open('README.rst').read(),
include_package_data=True,
zip_safe=False,
keywords='froala,django,admin,wysiwyg,editor,text,html,editor,rich,web',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)