forked from piotrkilczuk/django-inline-ordering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·27 lines (25 loc) · 923 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='django-inline-ordering',
version='0.1.3',
author='Piotr Kilczuk',
author_email='[email protected]',
url='http://github.com/centralniak',
description='Django app to ease ordering of related data - ' \
'enable Drag&Drop ordering in admin with just a few LOC',
#packages = ['inline_ordering',],
packages=find_packages(),
provides=['inline_ordering',],
include_package_data=True,
classifiers=[
'Framework :: Django',
#'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)