-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.08 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
"""
falcon-jinja
------------
Jinja2 support for Falcon web framework
"""
from setuptools import setup
import falcon_jinja2
setup(
name='falcon_jinja2',
version=falcon_jinja2.__version__,
url='https://github.com/mikeylight/falcon-jinja',
license=falcon_jinja2.__license__,
author=falcon_jinja2.__author__,
author_email='[email protected]',
description='Jinja2 support for Falcon',
long_description=__doc__,
packages=['falcon_jinja2'],
platforms='any',
install_requires=[
'jinja2>=2.10.1',
'falcon'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)