-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* patch bump, and also added deploy to pypi script * add in discovery token as a prereq, and point to oauth guide to get one * Update README.md Co-authored-by: Kazuhiro Sera <ksera@slack-corp.com> * edit script to take out slack_bolt and replace with slack_discovery_sdk Co-authored-by: Kazuhiro Sera <ksera@slack-corp.com>
- Loading branch information
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright 2021, Slack Technologies, LLC. All rights reserved. | ||
|
||
#!/bin/bash | ||
|
||
script_dir=`dirname $0` | ||
cd ${script_dir}/.. | ||
rm -rf ./slack_discovery_sdk.egg-info | ||
|
||
pip install -U pip && \ | ||
pip install twine wheel && \ | ||
rm -rf dist/ build/ slack_discovery_sdk.egg-info/ && \ | ||
python setup.py sdist bdist_wheel && \ | ||
twine check dist/* && \ | ||
twine upload dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Copyright 2021, Slack Technologies, LLC. All rights reserved. | ||
|
||
__version__ = "1.0.0" | ||
__version__ = "1.0.1" |