forked from mikeboers/PyHAML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (28 loc) · 975 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (28 loc) · 975 Bytes
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
from setuptools import setup
setup(
name='PyHAML',
version='1.1.2',
description='Pythonic implementation of HAML, cross compiling to Mako template syntax.',
url='http://github.com/iter8ve/PyHAML',
author='bourke',
author_email='michael@iter8ve.com',
license='BSD-3',
packages=['haml'],
install_requires=['mako', 'six'],
scripts=[
'scripts/haml-preprocess',
'scripts/haml-render',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: XML',
],
)