forked from smyrman/django-jquery-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 692 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
#!/usr/bin/env python
from distutils.core import setup
VERSION = '0.2a0'
setup(name='django-jquery-widgets',
version=VERSION,
description='jQuery-powered widgets and fields for Django',
long_description=open('README.rst').read(),
author='Sindre Røkenes Myren',
author_email='[email protected]',
license='BSD',
url='http://github.com/smyrman/django-jquery-widgets',
install_requires='django >= 1.1',
download_url='http://github.com/smyrman/django-jquery-widgets/tarball/%s'%VERSION,
packages=['jquery_widgets'],
package_data={'jquery_widgets': ['static/js/*.js', 'static/css/*/*/*.css',
'static/css/*/*/images/*', 'templates/jquery_widgets/*.html']},
)