Skip to content

Commit

Permalink
Updates to tasking
Browse files Browse the repository at this point in the history
  • Loading branch information
philipithomas committed Feb 23, 2016
1 parent 62a48f8 commit 9155650
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

setup(name="staffjoy",
packages=find_packages(),
version="0.6",
version="0.7",
description="Staffjoy API Wrapper in Python",
author="Philip Thomas",
author_email="help@staffjoy.com",
license="MIT",
url="https://github.com/staffjoy/client_python",
download_url="https://github.com/StaffJoy/client_python/archive/0.6.tar.gz",
download_url="https://github.com/StaffJoy/client_python/archive/0.7.tar.gz",
keywords=["staffjoy-api", "staffjoy", "staff joy"],
install_requires=["requests[security]"], )
1 change: 1 addition & 0 deletions staffjoy/resources/chomp_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
class ChompTask(Resource):
PATH = "/internal/tasking/chomp/{schedule_id}"
ENVELOPE = None
ID_NAME = "schedule_id"
1 change: 1 addition & 0 deletions staffjoy/resources/mobius_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@

class MobiusTask(Resource):
PATH = "/internal/tasking/mobius/{schedule_id}"
ID_NAME = "schedule_id"
ENVELOPE = None

0 comments on commit 9155650

Please sign in to comment.