-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
24 lines (23 loc) · 885 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
from setuptools import setup, find_packages
setup(
name = "django-content-edit",
version = "2.0",
author = "David Burke",
author_email = "[email protected]",
description = ("A very simple way to let users edit content on the front end of a website."),
license = "BSD",
keywords = "django cms content ajax",
url = "https://github.com/burke-software/django-content-edit",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
"License :: OSI Approved :: BSD License",
],
install_requires=['django', 'django-ckeditor', 'django-reversion']
)