mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-03-16 22:10:30 +00:00
Added Brazilian Portugese locale. Fixed minor css scoping issue that caused stacked template items that were sortable to not display the 'move' cusor type. Fixed comment line in manage.py for PEP8.
28 lines
1 KiB
Python
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://github.com/iambrandontaylor/django-admin-sortable',
|
|
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'],
|
|
)
|