forked from benselme/flask-mako
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.27 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
42
43
"""
flask-mako
----------
This extension for the `Flask <http://flask.pocoo.org/>`_ micro web framework
allows developers to use `Mako Templates
<http://http://www.makotemplates.org/>`_ instead of the default Jinja2
templating engine.
"""
import sys
from setuptools import setup
setup(
name='Flask-Mako',
version='0.4',
url='https://github.com/benselme/flask-mako',
license='BSD',
author='Beranger Enselme, Frank Murphy',
author_email='benselme@gmail.com',
description='Mako templating support for Flask applications.',
long_description=__doc__,
py_modules=['flask_mako'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'Mako'
],
tests_require=(['unittest2'] if sys.version_info < (2, 7) else []),
test_suite='tests.test_mako.suite',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)