-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
25 lines (24 loc) · 802 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
from setuptools import setup
setup(
name='django-ace-overlay',
version='0.8.0',
author='Nina Pavlich',
author_email='[email protected]',
url='https://github.com/ninapavlich/django-ace-overlay',
license="MIT",
description='Ace editor for Django admin',
keywords=['libraries', 'web development',
'cms', 'django', 'code-editor', 'admin'],
include_package_data=True,
packages=['ace_overlay'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)