forked from hint/django-admin-jqueryui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (24 loc) · 863 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='django-admin-jqueryui',
version='1.8.11',
author='Piotr Kilczuk -- Hint',
author_email='[email protected]',
url='https://github.com/hint/django-admin-jqueryui',
description='Simply adds a jquery ui to the admin panel',
#packages = ['inline_ordering',],
packages=find_packages(),
provides=['admin_jqueryui', ],
include_package_data=True,
classifiers=[
'Framework :: Django',
#'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)