Skip to content

Commit

Permalink
Merge 3c59d33 into 316ba0a
Browse files Browse the repository at this point in the history
  • Loading branch information
eterna2 committed Oct 31, 2019
2 parents 316ba0a + 3c59d33 commit ecb4e5e
Show file tree
Hide file tree
Showing 31 changed files with 2,713 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .coveragerc
@@ -0,0 +1,10 @@
[run]
branch = True
source = e2fyi
omit =
**/*_test.py
**/__init__.py

[report]
fail_under = 50
show_missing = True
3 changes: 3 additions & 0 deletions .envfile
@@ -0,0 +1,3 @@
PIPENV_DEFAULT_PYTHON_VERSION=3.6
PIPENV_VENV_IN_PROJECT=true
MYPYPATH=stubs/
10 changes: 10 additions & 0 deletions .envrc
@@ -0,0 +1,10 @@
# incase .env does not exist
touch .env

# export all env defined
set -o allexport
source .envfile
source .env
set +o allexport

layout_pipenv
17 changes: 17 additions & 0 deletions .flake8
@@ -0,0 +1,17 @@
[flake8]
ignore = C408,E203
exclude =
.venv,
.git,
__pycache__,
docker/,
docs/,
**/__init__.py,
tests/**,
tensorflow/**,
tensorflow_serving/**,
examples/**,
**/*_grpc.py, # generated protobuf
**/*_pb2.py, # generated protobuf
max-complexity = 10
max-line-length = 88
16 changes: 16 additions & 0 deletions .isort.cfg
@@ -0,0 +1,16 @@
[settings]
line_length=88
force_to_top=
skip=**/*_grpc.py,**/*_pb2.py
known_future_library=
known_standard_library=
known_third_party=magic
known_first_party=
indent=' '
multi_line_output=3
length_sort=1
forced_separate=
lines_between_types=1
default_section=FIRSTPARTY
no_lines_before=LOCALFOLDER
include_trailing_comma=true

0 comments on commit ecb4e5e

Please sign in to comment.