forked from mazelife/django-redactor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (34 loc) · 1.05 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
38
39
40
41
#!/usr/bin/env python
from os import path
from distutils.core import setup
version = '1.2.2'
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
]
root_dir = path.dirname(__file__)
long_desc = open(root_dir + '/README.rst').read()
setup(
name='django-redactor',
version=version,
url='http://github.com/mazelife/django-redactor/',
author='James Stevenson',
author_email='james.m.stevenson at gmail dot com',
license='CC licence, see LICENSE.txt',
packages=['redactor'],
description=(
'Integrates the Redactor Javascript WYSIWYG editor with Django.'
),
classifiers=classifiers,
long_description=long_desc,
install_requires=['django>=1.3.1'],
include_package_data=True,
zip_safe=False
)