diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2015-12-24 19:32:06 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2015-12-24 19:32:06 +0000 |
commit | 4158dfa826bea47ffc0023b2e26c4b3fc3ebd869 (patch) | |
tree | 02d847fd1a412e4076bcd39fc2a3e65d5c47884e /net/py-txrestapi | |
parent | 5c9e3ce4df75a91b05eac33c9e7dd18a79c1cbda (diff) | |
download | ports-4158dfa826bea47ffc0023b2e26c4b3fc3ebd869.tar.gz ports-4158dfa826bea47ffc0023b2e26c4b3fc3ebd869.zip |
Notes
Diffstat (limited to 'net/py-txrestapi')
-rw-r--r-- | net/py-txrestapi/Makefile | 19 | ||||
-rw-r--r-- | net/py-txrestapi/distinfo | 2 | ||||
-rw-r--r-- | net/py-txrestapi/pkg-descr | 8 |
3 files changed, 29 insertions, 0 deletions
diff --git a/net/py-txrestapi/Makefile b/net/py-txrestapi/Makefile new file mode 100644 index 000000000000..9bfd653889f4 --- /dev/null +++ b/net/py-txrestapi/Makefile @@ -0,0 +1,19 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= txrestapi +PORTVERSION= 0.2 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Easing the creation of REST API services in Python + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/net/py-txrestapi/distinfo b/net/py-txrestapi/distinfo new file mode 100644 index 000000000000..f7f94a3867ed --- /dev/null +++ b/net/py-txrestapi/distinfo @@ -0,0 +1,2 @@ +SHA256 (txrestapi-0.2.tar.gz) = 3e432b88bc3788255a4d873e72c1ef6e9d0883306e95cd36c79542e792a08e31 +SIZE (txrestapi-0.2.tar.gz) = 5233 diff --git a/net/py-txrestapi/pkg-descr b/net/py-txrestapi/pkg-descr new file mode 100644 index 000000000000..d224160dcd5b --- /dev/null +++ b/net/py-txrestapi/pkg-descr @@ -0,0 +1,8 @@ +txrestapi makes it easier to create Twisted REST API services. Normally, +one would create Resource subclasses defining each segment of a path; +this is cubersome to implement and results in output that isn't very +readable. txrestapi provides an APIResource class allowing complex +mapping of path to callback (a la Django) with a readable decorator. + + +WWW: https://pypi.python.org/pypi/txrestapi/ |