django-admin-sortable/setup.py
Brandon Taylor 04bdb80637 Removed individual jQueryUI JavaScript files in favor of loading jQueryUI from Google Ajax API.
Updated jQuery to latest version from Google Ajax API.
Integrated pull-request from BlindHunter to add the ability to override templates on a per-model basis.
Updated README.
2012-09-25 10:52:31 -04:00

28 lines
1 KiB
Python

from setuptools import setup, find_packages
try:
README = open('README').read()
except:
README = None
setup(
name='django-admin-sortable',
version=__import__('adminsortable').__version__,
description='Drag and drop sorting for models and inline models in Django admin',
long_description=README,
license='APL',
author='Brandon Taylor',
author_email='brandon@iambrandontaylor.com',
url='http://iambrandontaylor.com/',
packages=find_packages(exclude=['sample_project']),
zip_safe=False,
include_package_data=True,
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)