diff options
author | carp <25677564+carp@users.noreply.github.com> | 2020-07-13 13:27:55 -0400 |
---|---|---|
committer | carp <25677564+carp@users.noreply.github.com> | 2020-07-13 13:27:55 -0400 |
commit | cb961ed0d6896309336159bda34ed2f75fb60a84 (patch) | |
tree | 6d75fcd9bd32b2e884e299ea97e361513036b3a2 /anime-face-detector/.gitignore | |
parent | e78f351e06e432a607ebadc8de3ea6d27315c088 (diff) | |
download | yaoi-communism-cb961ed0d6896309336159bda34ed2f75fb60a84.tar.gz yaoi-communism-cb961ed0d6896309336159bda34ed2f75fb60a84.zip |
add face detection
Diffstat (limited to 'anime-face-detector/.gitignore')
-rw-r--r-- | anime-face-detector/.gitignore | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/anime-face-detector/.gitignore b/anime-face-detector/.gitignore new file mode 100644 index 0000000..ff81ae6 --- /dev/null +++ b/anime-face-detector/.gitignore @@ -0,0 +1,110 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +# idea pycharm data +.idea/ + +# cython build result +build/ |