CoolFace
Apppublic

ed-donner/outsmart

sourceHugging Facemitupdated 11mo agoView on Hugging Face
60likes
.gitignore165 linesDownload Raw Back to root
1.DS_Store2 3# Byte-compiled / optimized / DLL files4__pycache__/5*.py[cod]6*$py.class7 8# C extensions9*.so10 11# Distribution / packaging12.Python13build/14develop-eggs/15dist/16downloads/17eggs/18.eggs/19lib/20lib64/21parts/22sdist/23var/24wheels/25share/python-wheels/26*.egg-info/27.installed.cfg28*.egg29MANIFEST30 31# PyInstaller32#  Usually these files are written by a python script from a template33#  before PyInstaller builds the exe, so as to inject date/other infos into it.34*.manifest35*.spec36 37# Installer logs38pip-log.txt39pip-delete-this-directory.txt40 41# Unit test / coverage reports42htmlcov/43.tox/44.nox/45.coverage46.coverage.*47.cache48nosetests.xml49coverage.xml50*.cover51*.py,cover52.hypothesis/53.pytest_cache/54cover/55 56# Translations57*.mo58*.pot59 60# Django stuff:61*.log62local_settings.py63db.sqlite364db.sqlite3-journal65 66# Flask stuff:67instance/68.webassets-cache69 70# Scrapy stuff:71.scrapy72 73# Sphinx documentation74docs/_build/75 76# PyBuilder77.pybuilder/78target/79 80# Jupyter Notebook81.ipynb_checkpoints82 83# IPython84profile_default/85ipython_config.py86 87# pyenv88#   For a library or package, you might want to ignore these files since the code is89#   intended to run in multiple environments; otherwise, check them in:90# .python-version91 92# pipenv93#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.94#   However, in case of collaboration, if having platform-specific dependencies or dependencies95#   having no cross-platform support, pipenv may install dependencies that don't work, or not96#   install all needed dependencies.97#Pipfile.lock98 99# poetry100#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.101#   This is especially recommended for binary packages to ensure reproducibility, and is more102#   commonly ignored for libraries.103#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control104#poetry.lock105 106# pdm107#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.108#pdm.lock109#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it110#   in version control.111#   https://pdm.fming.dev/latest/usage/project/#working-with-version-control112.pdm.toml113.pdm-python114.pdm-build/115 116# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm117__pypackages__/118 119# Celery stuff120celerybeat-schedule121celerybeat.pid122 123# SageMath parsed files124*.sage.py125 126# Environments127.env128.venv129env/130venv/131ENV/132env.bak/133venv.bak/134 135# Spyder project settings136.spyderproject137.spyproject138 139# Rope project settings140.ropeproject141 142# mkdocs documentation143/site144 145# mypy146.mypy_cache/147.dmypy.json148dmypy.json149 150# Pyre type checker151.pyre/152 153# pytype static type analyzer154.pytype/155 156# Cython debug symbols157cython_debug/158 159# PyCharm160#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can161#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore162#  and can be added to the global gitignore or merged into this file.  For a more nuclear163#  option (not recommended) you can uncomment the following to ignore the entire idea folder.164.idea/165