forked from kitsunde/django-ace-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 816 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-ace-editor',
version="1.0.0",
description='django-ace-editor is an implementation of the ajax.org Ace editor as a form control.',
long_description=open('README.md').read(),
author='Kit Sunde',
author_email='[email protected]',
url='https://github.com/Celc/django-ace-editor',
packages=find_packages(),
include_package_data=True,
license="BSD",
keywords="editor forms widget",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)