-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
776 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
flask-restless (1.0.0b1) unstable; urgency=low | ||
|
||
* Initial release | ||
|
||
-- Thomas Sarboni <[email protected]> Thu, 03 Aug 2017 09:32:00 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
Source: flask-restless | ||
Section: python | ||
Priority: optional | ||
Maintainer: Jeffrey Finkelstein <[email protected]> | ||
Uploaders: Jeffrey Finkelstein <[email protected]> | ||
Build-Depends: | ||
debhelper (>= 9), | ||
dh-python, | ||
python-all (>= 2.6), | ||
python-dateutil (>= 2.2), | ||
python-flask (>= 0.10), | ||
python-mimerender (>= 0.5.2), | ||
python-setuptools, | ||
python-sqlalchemy (>= 0.8), | ||
python3-all (>= 3.3), | ||
python3-dateutil (>= 2.2), | ||
python3-flask (>= 0.10), | ||
python3-mimerender (>= 0.5.2), | ||
python3-setuptools, | ||
python3-sqlalchemy (>= 0.8) | ||
X-Python-Version: >= 2.6 | ||
X-Python3-Version: >= 3.3 | ||
Standards-Version: 3.9.8 | ||
Homepage: https://pypi.python.org/pypi/Flask-Restless | ||
Vcs-Git: https://github.com/jfinkels/flask-restless.git | ||
Vcs-Browser: https://github.com/jfinkels/flask-restless | ||
|
||
Package: python-flask-restless | ||
Architecture: all | ||
Depends: | ||
python-dateutil (>= 2.2), | ||
python-flask (>= 0.10), | ||
python-mimerender (>= 0.5.2), | ||
python-sqlalchemy (>= 0.8), | ||
${misc:Depends}, | ||
${python:Depends} | ||
Description: A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models. | ||
This is Flask-Restless, a Flask extension that creates URL endpoints that satisfy the requirements | ||
of the JSON API specification. | ||
It is compatible with models that have been defined using either SQLAlchemy or Flask-SQLAlchemy. | ||
|
||
Package: python3-flask-restless | ||
Architecture: all | ||
Depends: | ||
python3-dateutil (>= 2.2), | ||
python3-flask (>= 0.10), | ||
python3-mimerender (>= 0.5.2), | ||
python3-sqlalchemy (>= 0.8), | ||
${misc:Depends}, | ||
${python3:Depends} | ||
Description: A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models. | ||
This is Flask-Restless, a Flask extension that creates URL endpoints that satisfy the requirements | ||
of the JSON API specification. | ||
It is compatible with models that have been defined using either SQLAlchemy or Flask-SQLAlchemy. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
README |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/make -f | ||
# -*- mode: makefile-mode; -*- | ||
|
||
#export DH_VERBOSE = 1 | ||
|
||
export PYBUILD_NAME=flask-restless | ||
|
||
%: | ||
dh $@ --with python2,python3 --buildsystem=pybuild | ||
|
||
override_dh_auto_test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
version=3 | ||
http://pypi.debian.net/Flask-Restless/Flask-SQLAlchemy-(.*)\.tar\.gz | ||
|