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
+2 -1
View File
@@ -5,7 +5,7 @@ import re
setup(
name="httpbin",
version="0.1.0",
version="0.1.1",
description="HTTP Request and Response Service",
# The project URL.
@@ -28,5 +28,6 @@ setup(
'Programming Language :: Python :: 3.4',
],
packages=find_packages(),
include_package_data = True, # include files listed in MANIFEST.in
install_requires=['Flask','MarkupSafe','decorator','itsdangerous','six'],
)