forked from ChillyBwoy/gears-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 851 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
import os
from setuptools import setup, find_packages
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='gears-sass',
version='0.3.0',
license='ISC',
author='Eugene Cheltsov',
author_email='chill.icp@gmail.com',
url='https://github.com/ChillyBwoy/gears-sass',
description='SASS compiler for Gears',
long_description=read('README.md'),
packages=find_packages(),
include_package_data=True,
keywords='gears django-gears gears-sass gears-scss',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
)