CoolFace
Apppublic

Cristthomas/ml-sharp

sourceHugging Faceupdated 9mo agoView on Hugging Face
2likes
.gitignore220 linesDownload Raw Back to root
1# Byte-compiled / optimized / DLL files2__pycache__/3*.py[codz]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*.egg27MANIFEST28 29# PyInstaller30#   Usually these files are written by a python script from a template31#   before PyInstaller builds the exe, so as to inject date/other infos into it.32*.manifest33*.spec34 35# Installer logs36pip-log.txt37pip-delete-this-directory.txt38 39# Unit test / coverage reports40htmlcov/41.tox/42.nox/43.coverage44.coverage.*45.cache46nosetests.xml47coverage.xml48*.cover49*.py.cover50.hypothesis/51.pytest_cache/52cover/53 54# Translations55*.mo56*.pot57 58# Django stuff:59*.log60local_settings.py61db.sqlite362db.sqlite3-journal63 64# Flask stuff:65instance/66.webassets-cache67 68# Scrapy stuff:69.scrapy70 71# Sphinx documentation72docs/_build/73 74# PyBuilder75.pybuilder/76target/77 78# Jupyter Notebook79.ipynb_checkpoints80 81# IPython82profile_default/83ipython_config.py84 85# pyenv86#   For a library or package, you might want to ignore these files since the code is87#   intended to run in multiple environments; otherwise, check them in:88# .python-version89 90# pipenv91#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.92#   However, in case of collaboration, if having platform-specific dependencies or dependencies93#   having no cross-platform support, pipenv may install dependencies that don't work, or not94#   install all needed dependencies.95# Pipfile.lock96 97# UV98#   Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.99#   This is especially recommended for binary packages to ensure reproducibility, and is more100#   commonly ignored for libraries.101# uv.lock102 103# poetry104#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.105#   This is especially recommended for binary packages to ensure reproducibility, and is more106#   commonly ignored for libraries.107#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control108# poetry.lock109# poetry.toml110 111# pdm112#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.113#   pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.114#   https://pdm-project.org/en/latest/usage/project/#working-with-version-control115# pdm.lock116# pdm.toml117.pdm-python118.pdm-build/119 120# pixi121#   Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.122# pixi.lock123#   Pixi creates a virtual environment in the .pixi directory, just like venv module creates one124#   in the .venv directory. It is recommended not to include this directory in version control.125.pixi126 127# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm128__pypackages__/129 130# Celery stuff131celerybeat-schedule132celerybeat.pid133 134# Redis135*.rdb136*.aof137*.pid138 139# RabbitMQ140mnesia/141rabbitmq/142rabbitmq-data/143 144# ActiveMQ145activemq-data/146 147# SageMath parsed files148*.sage.py149 150# Environments151.env152.envrc153.venv154env/155venv/156ENV/157env.bak/158venv.bak/159 160# Spyder project settings161.spyderproject162.spyproject163 164# Rope project settings165.ropeproject166 167# mkdocs documentation168/site169 170# mypy171.mypy_cache/172.dmypy.json173dmypy.json174 175# Pyre type checker176.pyre/177 178# pytype static type analyzer179.pytype/180 181# Cython debug symbols182cython_debug/183 184# PyCharm185#   JetBrains specific template is maintained in a separate JetBrains.gitignore that can186#   be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore187#   and can be added to the global gitignore or merged into this file.  For a more nuclear188#   option (not recommended) you can uncomment the following to ignore the entire idea folder.189# .idea/190 191# Abstra192#   Abstra is an AI-powered process automation framework.193#   Ignore directories containing user credentials, local state, and settings.194#   Learn more at https://abstra.io/docs195.abstra/196 197# Visual Studio Code198#   Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore 199#   that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore200#   and can be added to the global gitignore or merged into this file. However, if you prefer, 201#   you could uncomment the following to ignore the entire vscode folder202# .vscode/203 204# Ruff stuff:205.ruff_cache/206 207# PyPI configuration file208.pypirc209 210# Marimo211marimo/_static/212marimo/_lsp/213__marimo__/214 215# Streamlit216.streamlit/secrets.toml217 218# Kilo Code219.kilocode/220