Skip to content

Commit

Permalink
Introducing vpc-python-sdk (#1)
Browse files Browse the repository at this point in the history
* 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
astha-jain authored Jun 30, 2020
1 parent 52b141e commit 2bef532
Show file tree
Hide file tree
Showing 28 changed files with 146,741 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .bumpversion.cfg
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}

1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.enc binary
78 changes: 78 additions & 0 deletions .gitignore
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/

Loading

0 comments on commit 2bef532

Please sign in to comment.