-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
19 lines (17 loc) · 897 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='django-locksmith',
version='0.8.0',
description='Django apps for API authentication and centralized authorization',
author='James Turk',
author_email='[email protected]',
license='BSD',
url='http://github.com/sunlightlabs/django-locksmith/',
packages=find_packages(),
package_data={'locksmith': ['static/scripts/*.js', 'static/styles/*.css',
'static/datatables/js/*.js', 'static/datatables/css/*.css',
'static/datatables/images/*',
'static/bootstrap/js/*.js', 'static/bootstrap/css/*.css',
'static/bootstrap/img/*.png'],
'locksmith.hub': ['templates/locksmith/*.html', 'templates/locksmith/*.txt']},
)