forked from lokesh/lightbox2
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (26 loc) · 1.05 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
from setuptools import setup
setup(
name='django-jquery-lightbox',
version='2.6',
url='https://github.com/mikebryant/django-jquery-lightbox',
description='Django package for Lightbox: a small javascript library used to overlay images on top of the current page.',
author='Lokesh Dhakar',
maintainer='Mike Bryant',
maintainer_email='mike@mikebryant.me.uk',
license='Creative Commons Attribution 2.5 License',
keywords=['django', 'jquery', 'lightbox', 'staticfiles', 'overlay', 'image'],
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
packages=['jquery_lightbox'],
package_data={'jquery_lightbox': ['static/js/*.js', 'static/css/*.css', 'static/img/*']},
install_requires=['django-jquery >= 1.9',],
)