mirror of
https://github.com/kennethreitz/httpbin.git
synced 2026-06-05 06:46:16 +00:00
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:
@@ -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'],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user