You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
Flask-Sijax is an extension for the `Flask <http://flask.pocoo.org>`_ microframework,
to simplify Sijax (`PyPi <http://pypi.python.org/pypi/Sijax>`_, `GitHub <https://github.com/spantaleev/sijax-python>`_) setup and usage for Flask users.
Sijax is a Python/jQuery library that makes AJAX easy to use in web applications.
"""
fromsetuptoolsimportsetup
setup(
name="Flask-Sijax",
version='0.1.3',
description="An extension for the Flask microframework that adds Sijax support.",
long_description=__doc__,
author="Slavi Pantaleev",
author_email="s.pantaleev@gmail.com",
url="https://github.com/spantaleev/flask-sijax",
keywords= ["ajax", "jQuery", "flask"],
platforms="any",
license="BSD",
packages= ['flaskext'],
namespace_packages=['flaskext'],
install_requires= ['Flask', 'Sijax>=0.1.5'],
test_suite='tests',
zip_safe=False,
classifiers= [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",