forked from jsocol/jingo-minify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 857 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
from setuptools import setup, find_packages
setup(
name='jingo_minify',
version='0.4',
description='A Django app that will concat and minify JS and CSS.',
author='Dave Dash, James Socol',
author_email='dd@mozilla.com, james@mozilla.com',
url='http://github.com/jsocol/jingo-minify',
license='BSD',
packages=find_packages(exclude=['examples.*']),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Web Environment :: Mozilla',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)