forked from jfinkels/flask-restless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (55 loc) · 2.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""
Flask-Restless
~~~~~~~~~~~~~~
Flask-Restless is a `Flask <http://flask.pocoo.org>`_ extension which
facilitates the creation of ReSTful JSON APIs. It is compatible with models
which have been defined using `SQLAlchemy <http://sqlalchemy.org>`_ or
`FLask-SQLAlchemy <http://packages.python.org/Flask-SQLAlchemy>`_.
For more information, check the World Wide Web!
* `Documentation <http://readthedocs.org/docs/flask-restless>`_
* `PyPI listing <http://pypi.python.org/pypi/Flask-Restless>`_
* `Source code repository <http://github.com/jfinkels/flask-restless>`_
"""
import sys
from setuptools import setup
#: The installation requirements for Flask-Restless. Flask-SQLAlchemy is not
#: required, so the user must install it explicitly.
requirements = ['flask>=0.10', 'sqlalchemy>=0.8', 'python-dateutil>2.2',
'mimerender>=0.5.2']
setup(
author='Jeffrey Finkelstein',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Database :: Front-Ends',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
description='A Flask extension for easy ReSTful API generation',
download_url='http://pypi.python.org/pypi/Flask-Restless',
install_requires=requirements,
include_package_data=True,
keywords=['ReST', 'API', 'Flask'],
license='GNU AGPLv3+ or BSD',
long_description=__doc__,
name='Flask-Restless',
platforms='any',
packages=['flask_restless'],
test_suite='nose.collector',
tests_require=['nose'],
url='http://github.com/jfinkels/flask-restless',
version='0.17.1-dev',
zip_safe=False
)