-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·32 lines (30 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
30
31
32
import os
from setuptools import setup
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
readme = f.read()
f.close()
setup(
name='django-wysiwyg-redactor',
version='0.5.2',
description='django-wysiwyg-redactor is a lightweight responsive wysiwyg editor for Django',
long_description=readme,
author="Douglas Miranda",
author_email='douglasmirandasilva@gmail.com',
url='https://github.com/douglasmiranda/django-wysiwyg-redactor',
license='MIT',
packages=['redactor'],
include_package_data=True,
install_requires=['setuptools'],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
keywords='django,admin,wysiwyg,editor,redactor,redactorjs',
)