forked from rnk/django-media-bundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (31 loc) · 974 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
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import media_bundler
setup(
name='django-media-bundler',
version=media_bundler.__version__,
author='Reid Kleckner',
author_email='rnk@mit.edu',
description="Django application that bundles your Javascript/CSS, "
+"and sprites your icons.",
packages=find_packages(),
zip_safe=False,
url='http://github.com/rnk/django-media-bundler/',
classifiers=[
"Environment :: Web Environment",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
],
long_description="",
)