Skip to content

Commit

Permalink
Merge bc0ab4e into 8e32477
Browse files Browse the repository at this point in the history
  • Loading branch information
max-k committed Aug 23, 2017
2 parents 8e32477 + bc0ab4e commit 950e22f
Show file tree
Hide file tree
Showing 7 changed files with 774 additions and 0 deletions.
5 changes: 5 additions & 0 deletions debian/changelog
@@ -0,0 +1,5 @@
flask-restless (1.0.0b1) unstable; urgency=low

* Initial release

-- Thomas Sarboni <max-k@post.com> Thu, 03 Aug 2017 09:32:00 +0100
1 change: 1 addition & 0 deletions debian/compat
@@ -0,0 +1 @@
9
54 changes: 54 additions & 0 deletions debian/control
@@ -0,0 +1,54 @@
Source: flask-restless
Section: python
Priority: optional
Maintainer: Jeffrey Finkelstein <jeffrey.finkelstein@gmail.com>
Uploaders: Jeffrey Finkelstein <jeffrey.finkelstein@gmail.com>
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.
700 changes: 700 additions & 0 deletions debian/copyright

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions debian/docs
@@ -0,0 +1 @@
README
10 changes: 10 additions & 0 deletions debian/rules
@@ -0,0 +1,10 @@
#!/usr/bin/make -f
# -*- mode: makefile-mode; -*-

#export DH_VERBOSE = 1

export PYBUILD_NAME=flask-restless

%:
dh $@ --with python2,python3 --buildsystem=pybuild

3 changes: 3 additions & 0 deletions debian/watch
@@ -0,0 +1,3 @@
version=3
http://pypi.debian.net/Flask-Restless/Flask-Restless-(.*)\.tar\.gz

0 comments on commit 950e22f

Please sign in to comment.