django-admin-sortable/setup.py
Brandon Taylor 1ebf86b4aa Updated README.
Version bump to 1.6.7
2014-04-08 07:52:26 -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='alsoicode@gmail.com',
url='https://brandonftaylor.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'],
)