CoolFace
Apppublic

ials/earth

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes
.gitignore162 linesDownload Raw Back to root
1# Byte-compiled / optimized / DLL files2__pycache__/3*.py[cod]4*$py.class5 6# C extensions7*.so8 9# Distribution / packaging10.Python11build/12develop-eggs/13dist/14downloads/15eggs/16.eggs/17lib/18lib64/19parts/20sdist/21var/22wheels/23share/python-wheels/24*.egg-info/25.installed.cfg26*.egg27MANIFEST28private/29 30# PyInstaller31#  Usually these files are written by a python script from a template32#  before PyInstaller builds the exe, so as to inject date/other infos into it.33*.manifest34*.spec35 36# Installer logs37pip-log.txt38pip-delete-this-directory.txt39 40# Unit test / coverage reports41htmlcov/42.tox/43.nox/44.coverage45.coverage.*46.cache47nosetests.xml48coverage.xml49*.cover50*.py,cover51.hypothesis/52.pytest_cache/53cover/54 55# Translations56*.mo57*.pot58 59# Django stuff:60*.log61local_settings.py62db.sqlite363db.sqlite3-journal64 65# Flask stuff:66instance/67.webassets-cache68 69# Scrapy stuff:70.scrapy71 72# Sphinx documentation73docs/_build/74 75# PyBuilder76.pybuilder/77target/78 79# Jupyter Notebook80.ipynb_checkpoints81 82# IPython83profile_default/84ipython_config.py85 86# pyenv87#   For a library or package, you might want to ignore these files since the code is88#   intended to run in multiple environments; otherwise, check them in:89# .python-version90 91# pipenv92#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.93#   However, in case of collaboration, if having platform-specific dependencies or dependencies94#   having no cross-platform support, pipenv may install dependencies that don't work, or not95#   install all needed dependencies.96#Pipfile.lock97 98# poetry99#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.100#   This is especially recommended for binary packages to ensure reproducibility, and is more101#   commonly ignored for libraries.102#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control103#poetry.lock104 105# pdm106#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.107#pdm.lock108#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it109#   in version control.110#   https://pdm.fming.dev/#use-with-ide111.pdm.toml112 113# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm114__pypackages__/115 116# Celery stuff117celerybeat-schedule118celerybeat.pid119 120# SageMath parsed files121*.sage.py122 123# Environments124.env125.venv126env/127venv/128ENV/129env.bak/130venv.bak/131 132# Spyder project settings133.spyderproject134.spyproject135 136# Rope project settings137.ropeproject138 139# mkdocs documentation140/site141 142# mypy143.mypy_cache/144.dmypy.json145dmypy.json146 147# Pyre type checker148.pyre/149 150# pytype static type analyzer151.pytype/152 153# Cython debug symbols154cython_debug/155 156# PyCharm157#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can158#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore159#  and can be added to the global gitignore or merged into this file.  For a more nuclear160#  option (not recommended) you can uncomment the following to ignore the entire idea folder.161#.idea/162