Include Templates and Bump Version to 0.1.1

I forgot to include the templates in setup.py, so httpbin would complain
and return a 500 when accessing views that require templates.  This
fixes that problem by adding them as "data" in setup.py and MANIFEST.in
This commit is contained in:
Kevin McCarthy
2014-06-01 11:55:44 -10:00
parent 9074c32030
commit a109bbbe29
4 changed files with 22 additions and 2 deletions
+14
View File
@@ -114,6 +114,20 @@ All endpoint responses are JSON-encoded.
"url": "http://httpbin.org/get?show_env=1"
}
## Installing and running from PyPI
You can install httpbin as a library from PyPI and run it as a WSGI app. For example, using Gunicorn:
```bash
$ pip install httpbin
$ gunicorn httpbin:app
```
## Changelog
* 0.1.1: Added templates as data in setup.py
* 0.1.0: Added python3 support and (re)publish on PyPI
## AUTHOR
A [Kenneth Reitz](http://kennethreitz.com/pages/open-projects.html)