-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·33 lines (31 loc) · 1.06 KB
/
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
28
29
30
31
32
33
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='django-inline-ordering',
version='1.0.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,
install_requires=['django-admin-jqueryui>=1.0.0', ],
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',
],
package_data={
'inline_ordering': [
'media/inline_ordering.js'
],
},
)