Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
- Bug Fix: setup did not include find_packages and therefore the currently installation may not be capturing everything it should be
- Bug Fix: DELETE != PUT
  • Loading branch information
BenjamenMeyer committed Feb 11, 2015
1 parent a59c315 commit 1f7b8ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys
from setuptools import setup
from setuptools import setup, find_packages

REQUIRES = []

Expand All @@ -13,4 +13,9 @@
author_email='[email protected]',
install_requires=REQUIRES,
test_suite='stackinabox',
packages=find_packages(exclude=['tests*', 'stackinabox/tests']),
zip_safe=True,
classifiers=["Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Testing"],
)
2 changes: 1 addition & 1 deletion stackinabox/services/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class RouteAlreadyRegisteredError(Exception):


class StackInABoxService(object):
DELETE = 'PUT'
DELETE = 'DELETE'
GET = 'GET'
HEAD = 'HEAD'
OPTIONS = 'OPTIONS'
Expand Down

0 comments on commit 1f7b8ec

Please sign in to comment.