Skip to content

Commit 8fc1018

Browse files
committed
add git info
1 parent aba2ef0 commit 8fc1018

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Python 3.9+
1919
If the python package is hosted on a repository, you can install directly using:
2020

2121
```sh
22-
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
22+
pip install git+https://github.com/bandwidth/python-sdk.git
2323
```
24-
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
24+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/bandwidth/python-sdk.git`)
2525

2626
Then import the package:
2727
```python

git_push.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ if [ "$git_host" = "" ]; then
1414
fi
1515

1616
if [ "$git_user_id" = "" ]; then
17-
git_user_id="GIT_USER_ID"
17+
git_user_id="bandwidth"
1818
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
1919
fi
2020

2121
if [ "$git_repo_id" = "" ]; then
22-
git_repo_id="GIT_REPO_ID"
22+
git_repo_id="python-sdk"
2323
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
2424
fi
2525

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies = [
1717
]
1818

1919
[project.urls]
20-
Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
20+
Repository = "https://github.com/bandwidth/python-sdk"
2121

2222
[tool.poetry]
2323
requires-poetry = ">=2.0"

0 commit comments

Comments
 (0)