-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·41 lines (35 loc) · 1.15 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
37
38
39
40
41
from setuptools import setup
setup(
name='PyHAML',
version='1.2.1',
description='Pythonic implementation of HAML, cross compiling to Mako template syntax.',
url='http://github.com/mikeboers/PyHAML',
author='Mike Boers',
author_email='[email protected]',
license='BSD-3',
packages=['haml'],
install_requires=[
'mako',
'six',
'lesscpy',
],
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.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: XML',
],
)