Skip to content

Commit 2bef532

Browse files
authored
Introducing vpc-python-sdk (#1)
* Introducing vpc-python-sdk * add vpc.env.enc and update travis.yml * Update README.md * adding semantic release to vpc-python-sdk
1 parent 52b141e commit 2bef532

28 files changed

+146741
-2
lines changed

.bumpversion.cfg

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[bumpversion]
2+
current_version = 0.0.0
3+
commit = True
4+
message = Update version {current_version} -> {new_version}
5+
6+
[bumpversion:file:ibm_vpc/version.py]
7+
search = __version__ = '{current_version}'
8+
replace = __version__ = '{new_version}'
9+
10+
[bumpversion:file:setup.py]
11+
search = __version__ = '{current_version}'
12+
replace = __version__ = '{new_version}'
13+
14+
[bumpversion:file:README.md]
15+
search = {current_version}
16+
replace = {new_version}
17+

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.enc binary

.gitignore

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# IDE OS
2+
.DS_Store
3+
.idea
4+
.project
5+
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# Distribution / packaging
12+
.Python
13+
env/
14+
build/
15+
develop-eggs/
16+
dist/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover
47+
48+
.vscode
49+
50+
# virtual env
51+
venv/
52+
# python 3 virtual env
53+
python3/
54+
55+
*.env
56+
.env
57+
58+
# resources
59+
resources/output.wav
60+
61+
docs/_build/
62+
deploy.sh
63+
docs/apis
64+
docs/gh-pages
65+
test/__init__.py
66+
*~
67+
68+
.sfdx/tools/apex.db
69+
.pytest_cache/
70+
71+
# openapi-sdkgen
72+
.openapi-generator/
73+
.openapi-generator-ignore
74+
/.pydevproject
75+
/.settings/
76+
77+
main/
78+

0 commit comments

Comments
 (0)