-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
22 lines (21 loc) · 876 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
from setuptools import setup, find_packages
setup(name = 'django_ckeditorfiles',
description = 'CKEditor bundled as a django staticfiles app.',
version = '1.3',
url = 'https://github.com/espenak/django_ckeditorfiles',
author = 'Espen Angell Kristiansen',
license = 'LGPL',
packages=find_packages(exclude=['ez_setup']),
zip_safe = False,
include_package_data=True,
install_requires = ['setuptools', 'Django'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)