1#!/usr/bin/env python
2
3try:
4    from setuptools import setup
5except ImportError:
6    from distutils.core import setup
7
8setup(
9    name='django-libsass',
10    version='0.7',
11    description="A django-compressor filter to compile SASS files using libsass",
12    author='Matt Westcott',
13    author_email='matthew.westcott@torchbox.com',
14    url='https://github.com/torchbox/django-libsass',
15    py_modules=['django_libsass'],
16    license='BSD',
17    long_description=open('README.rst').read(),
18    classifiers=[
19        'Development Status :: 5 - Production/Stable',
20        'Environment :: Web Environment',
21        'Intended Audience :: Developers',
22        'License :: OSI Approved :: BSD License',
23        'Operating System :: OS Independent',
24        'Programming Language :: Python',
25        'Programming Language :: Python :: 2.7',
26        'Programming Language :: Python :: 3',
27        'Framework :: Django',
28    ],
29    install_requires=[
30        "django-compressor>=1.3",
31        "libsass>=0.7.0",
32    ],
33)
34