forked from sunlightlabs/django-locksmith
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
18 lines (16 loc) · 762 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from distutils.core import setup
setup(name='django-locksmith',
version='0.3.0',
description='Django apps for API authentication and centralized authorization',
author='James Turk',
author_email='jturk@sunlightfoundation.com',
license='BSD',
url='http://github.com/sunlightlabs/django-locksmith/',
packages=['locksmith', 'locksmith.auth', 'locksmith.auth.management',
'locksmith.auth.management.commands', 'locksmith.hub',
'locksmith.hub.management', 'locksmith.hub.management.commands',
'locksmith.hub.templatetags'],
package_data={'locksmith': ['media/scripts/*.js'],
'locksmith.hub': ['templates/locksmith/*.html']},
)