-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
36 lines (32 loc) · 1.02 KB
/
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
35
36
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(here, 'README.rst'), 'r').read()
changes = open(os.path.join(here, 'CHANGES.rst'), 'r').read()
requires = [
'pyramid',
'zope.interface',
'pyScss>=1.2',
]
setup(
name='pyramid_scss',
version='0.4',
description="Adds support for SCSS to Pyramid projects",
long_description="{0}\n\n{1}".format(readme, changes),
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Code Generators",
],
author='Jesse Dhillon',
author_email='[email protected]',
url='https://github.com/jessedhillon/pyramid_scss',
keywords='web wsgi css scss pyramid',
packages=find_packages(exclude=['*.tests']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
)