Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple small contributions #108

Merged
merged 1 commit into from
Apr 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ async def raise_event(self, instance_id, event_name, event_data=None,

switch_statement = {
202: lambda: None,
410: lambda: None,
410: lambda: f"Instance with ID {instance_id} is gone: either completed or failed",
404: lambda: f"No instance with ID {instance_id} found.",
400: lambda: "Only application/json request content is supported"
}
Expand Down
7 changes: 0 additions & 7 deletions host.json

This file was deleted.

41 changes: 0 additions & 41 deletions scripts/sample_deploy.sh

This file was deleted.

4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
from setuptools import setup, find_packages
from distutils.command import build

with open("README.md", "r") as fh:
long_description = fh.read()

class BuildModule(build.build):
"""Used to build the module."""
Expand All @@ -28,6 +30,8 @@ def run(self, *args, **kwargs):
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Durable Functions For Python',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
Expand Down