File: setup.py

package info (click to toggle)
python-django-adminsortable 2.0.10-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 536 kB
  • sloc: python: 501; sh: 24; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup, find_packages

try:
    README = open('README').read()
except:
    README = None

setup(
    author='Brandon Taylor',
    author_email='alsoicode@gmail.com',
    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 :: 2',
                 'Programming Language :: Python :: 3',
                 '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
)