diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2016-11-12 13:07:07 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2016-11-12 13:07:07 +0100 |
commit | 7616a608d437a58fad087f04b3f068bd9cf6d58b (patch) | |
tree | 841edebba26554bbc89447456b9d3fddae96f6f7 | |
parent | 6adbb5f68d4c0d14a24e0dec6c1438b3f981e418 (diff) |
Add basic files
-rw-r--r-- | .gitignore | 12 | ||||
-rw-r--r-- | setup.cfg | 10 |
2 files changed, 22 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4883d7f --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# global +*.pyc +*.pyo +__pycache__ + +# / +/*.egg +/*.egg-info +/.coverage +/build +/coverage +/dist diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..d44989c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,10 @@ +[nosetests] +with-doctest=true +doctest-extension=doctest +doctest-options=+IGNORE_EXCEPTION_DETAIL +with-coverage=true +cover-branches=true +cover-package=x +cover-erase=true +cover-html=true +cover-html-dir=coverage |