2011-11-16 06:48:14 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
2020-07-22 08:54:14 +00:00
|
|
|
with open('README.rst') as readme_file:
|
|
|
|
|
README = readme_file.read()
|
2011-11-16 06:48:14 +00:00
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
author='Brandon Taylor',
|
2014-02-12 21:22:04 +00:00
|
|
|
author_email='alsoicode@gmail.com',
|
2012-06-07 13:38:36 +00:00
|
|
|
classifiers=['Development Status :: 5 - Production/Stable',
|
2014-08-22 02:14:36 +00:00
|
|
|
'Environment :: Web Environment',
|
|
|
|
|
'Framework :: Django',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
|
'Operating System :: OS Independent',
|
2015-12-22 14:38:12 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2014-08-22 02:14:36 +00:00
|
|
|
'Topic :: Utilities'],
|
2015-07-06 03:03:24 +00:00
|
|
|
description='Drag and drop sorting for models and inline models in Django admin.',
|
|
|
|
|
include_package_data=True,
|
|
|
|
|
install_requires=['django'],
|
|
|
|
|
license='APL',
|
|
|
|
|
long_description=README,
|
|
|
|
|
name='django-admin-sortable',
|
|
|
|
|
packages=find_packages(exclude=['sample_project']),
|
|
|
|
|
url='https://github.com/iambrandontaylor/django-admin-sortable',
|
|
|
|
|
version=__import__('adminsortable').__version__,
|
|
|
|
|
zip_safe=False
|
2011-11-16 06:48:14 +00:00
|
|
|
)
|