-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
28 lines (26 loc) · 823 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
description = """
django-pipeline compiler for scss and with compass. Does not require the ruby gem.
"""
setup(
name='django-pipeline-compass',
version='0.1.5',
description=description,
long_description=description,
author='Vitaly',
author_email='[email protected]',
url='https://github.com/vbabiy/django-pipeline-compass',
packages=find_packages(),
zip_safe=False,
install_requires=['pyScss>=1.2.0'],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
)