-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
27 lines (23 loc) · 797 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 setup, find_packages
setup(
name = 'django-orderable',
version = '1.2.1',
description = 'Model ordering for the Django administration site.',
author = 'Ted Kaemming',
author_email = '[email protected]',
url = 'http://www.github.com/tkaemming/django-orderable/',
packages = find_packages('src'),
package_dir = {'': 'src'},
package_data = {
'orderable': [
'templates/orderable/change_list.html',
'templates/orderable/edit_inline/stacked.html',
'templates/orderable/edit_inline/tabular.html',
'media/orderable/orderable.js',
'locale/*/LC_MESSAGES/django.*',
]
},
install_requires = ['setuptools'],
zip_safe = False
)