forked from spantaleev/flask-sijax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.68 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
44
45
46
47
48
"""
Flask-Sijax
===========
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.
Links
-----
* `source <https://github.com/spantaleev/flask-sijax>`_
* `documentation <http://packages.python.org/Flask-Sijax>`_
* `development version
<https://github.com/spantaleev/flask-sijax/zipball/master#egg=Flask-Sijax-dev>`_
* `Sijax source <https://github.com/spantaleev/sijax-python>`_
* `Sijax documentation <http://packages.python.org/Sijax/>`_
"""
from setuptools import setup
setup(
name = "Flask-Sijax",
version = '0.3.2',
description = "An extension for the Flask microframework that adds Sijax support.",
long_description = __doc__,
author = "Slavi Pantaleev",
author_email = "[email protected]",
url = "https://github.com/spantaleev/flask-sijax",
keywords = ["ajax", "jQuery", "flask"],
platforms = "any",
license = "BSD",
py_modules = ['flask_sijax'],
install_requires = ['Flask>=0.7.0', 'Sijax>=0.2.0'],
test_suite = 'tests',
zip_safe = False,
classifiers = [
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"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",
]
)