Re-organized setup.
parent
51ed60a127
commit
3fd7d4aff3
19
setup.py
19
setup.py
|
|
@ -6,17 +6,8 @@ except:
|
||||||
README = None
|
README = None
|
||||||
|
|
||||||
setup(
|
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='Brandon Taylor',
|
||||||
author_email='alsoicode@gmail.com',
|
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',
|
classifiers=['Development Status :: 5 - Production/Stable',
|
||||||
'Environment :: Web Environment',
|
'Environment :: Web Environment',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
|
|
@ -25,4 +16,14 @@ setup(
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Topic :: Utilities'],
|
'Topic :: Utilities'],
|
||||||
|
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
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue