diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-18 16:34:22 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-18 16:34:22 +0100 |
commit | e1e77797454ac747b293f589d8f2e0243173a419 (patch) | |
tree | bbc69d85a5411892ea54c80542335f269a29d9e6 /.gitignore | |
download | tagit-e1e77797454ac747b293f589d8f2e0243173a419.tar.gz tagit-e1e77797454ac747b293f589d8f2e0243173a419.tar.bz2 tagit-e1e77797454ac747b293f589d8f2e0243173a419.zip |
initial commit
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba88570 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ + +# python runtime files +__pycache__ +*.pyc +*.pyo + +# development files +*.pth +.coverage +.pypirc +.mypy_cache +bsfs.egg-info +htmlcov +tags +dev/ +env + +# dist builds +MANIFEST +dist/ +build/ + +# doc builds +doc/build/ + +# doc extra files + +# test data binaries (keep the builder scripts only) + +# external builds + +# assets + + +## EOF ## |