-
Notifications
You must be signed in to change notification settings - Fork 117
/
setup.py
executable file
·29 lines (27 loc) · 892 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
24
25
26
27
28
29
import os
from setuptools import setup
f = open(os.path.join(os.path.dirname(__file__), 'README.md'))
readme = f.read()
f.close()
setup(
name='django-wysiwyg-redactor',
version='0.3.2',
description='This reusable Django app using WYSIWYG editor redactorjs.com',
long_description=readme,
author="Douglas Miranda",
author_email='douglasmirandasilva@gmail.com',
url='https://github.com/douglasmiranda/django-wysiwyg-redactor',
packages=['redactor'],
include_package_data=True,
install_requires=['setuptools'],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)