-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Introducing vpc-python-sdk * add vpc.env.enc and update travis.yml * Update README.md * adding semantic release to vpc-python-sdk
- Loading branch information
1 parent
52b141e
commit 2bef532
Showing
28 changed files
with
146,741 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[bumpversion] | ||
current_version = 0.0.0 | ||
commit = True | ||
message = Update version {current_version} -> {new_version} | ||
|
||
[bumpversion:file:ibm_vpc/version.py] | ||
search = __version__ = '{current_version}' | ||
replace = __version__ = '{new_version}' | ||
|
||
[bumpversion:file:setup.py] | ||
search = __version__ = '{current_version}' | ||
replace = __version__ = '{new_version}' | ||
|
||
[bumpversion:file:README.md] | ||
search = {current_version} | ||
replace = {new_version} | ||
|
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 @@ | ||
*.enc binary |
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,78 @@ | ||
# IDE OS | ||
.DS_Store | ||
.idea | ||
.project | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
|
||
.vscode | ||
|
||
# virtual env | ||
venv/ | ||
# python 3 virtual env | ||
python3/ | ||
|
||
*.env | ||
.env | ||
|
||
# resources | ||
resources/output.wav | ||
|
||
docs/_build/ | ||
deploy.sh | ||
docs/apis | ||
docs/gh-pages | ||
test/__init__.py | ||
*~ | ||
|
||
.sfdx/tools/apex.db | ||
.pytest_cache/ | ||
|
||
# openapi-sdkgen | ||
.openapi-generator/ | ||
.openapi-generator-ignore | ||
/.pydevproject | ||
/.settings/ | ||
|
||
main/ | ||
|
Oops, something went wrong.