Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas A. de Ruiter committed Mar 19, 2018
0 parents commit 0ff7df3
Show file tree
Hide file tree
Showing 33 changed files with 1,970 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
root = true

[*]
charset = utf-8
end_of_ine = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.py]
indent_style = space
indent_size = 4

[*.yml]
indent_style = space
indent_size = 2

7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
__pycache__
*.swp
*.egg-info
/.vscode
/docs/build
/build
/dist
13 changes: 13 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2018 Sentia MPC B.V.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
27 changes: 27 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[[source]]

url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"


[packages]

requests = "*"
furl = "*"
ansicolors = "*"
"beautifulsoup4" = "*"
pyotp = "*"


[dev-packages]

ipython = "*"
pylint = "*"
yapf = "*"
sphinx = "*"
guzzle-sphinx-theme = "*"
requests-mock = "*"
nose = "*"
twine = "*"
wheel = "*"
Loading

0 comments on commit 0ff7df3

Please sign in to comment.