forked from dwaiter/django-ckeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (24 loc) · 785 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
30
import os
from setuptools import setup, find_packages
install_requires = []
try:
import json
except ImportError, e:
install_requires.append('simplejson')
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README')
description = 'A small Django application that makes it easy to use CKEditor for form textareas.'
if os.path.exists(README_PATH):
long_description = open(README_PATH).read()
else:
long_description = description
setup(
name='django-ckeditor',
version='0.9.3',
install_requires=install_requires,
description=description,
long_description=long_description,
author='Dumbwaiter Design',
author_email='[email protected]',
url='http://bitbucket.org/dwaiter/django-ckeditor/',
packages=['ckeditor'],
)