CoolFace
Apppublic

keefereuther/Schema_Study_Preview

sourceHugging Facegpl-3.0updated 4mo agoView on Hugging Face
0likes
.gitignore169 linesDownload Raw Back to root
1# Byte-compiled / optimized / DLL files2__pycache__/3*.py[cod]4*$py.class5*copy.py6 7# C extensions8*.so9 10# Distribution / packaging11.Python12build/13develop-eggs/14dist/15downloads/16eggs/17.eggs/18lib/19lib64/20parts/21sdist/22var/23wheels/24share/python-wheels/25*.egg-info/26.installed.cfg27*.egg28MANIFEST29 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# Streamlit stuff:70.streamlit/71secrets.toml72 73# Scrapy stuff:74.scrapy75 76# Sphinx documentation77docs/_build/78 79# PyBuilder80.pybuilder/81target/82 83# Jupyter Notebook84.ipynb_checkpoints85 86# IPython87profile_default/88ipython_config.py89 90# pyenv91#   For a library or package, you might want to ignore these files since the code is92#   intended to run in multiple environments; otherwise, check them in:93# .python-version94 95# pipenv96#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.97#   However, in case of collaboration, if having platform-specific dependencies or dependencies98#   having no cross-platform support, pipenv may install dependencies that don't work, or not99#   install all needed dependencies.100#Pipfile.lock101 102# poetry103#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.104#   This is especially recommended for binary packages to ensure reproducibility, and is more105#   commonly ignored for libraries.106#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control107#poetry.lock108 109# pdm110#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.111#pdm.lock112#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it113#   in version control.114#   https://pdm.fming.dev/#use-with-ide115.pdm.toml116 117# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm118__pypackages__/119 120# Celery stuff121celerybeat-schedule122celerybeat.pid123 124# SageMath parsed files125*.sage.py126 127# Environments128.env129.venv130env/131venv/132ENV/133env.bak/134venv.bak/135 136# Spyder project settings137.spyderproject138.spyproject139 140# Rope project settings141.ropeproject142 143# mkdocs documentation144/site145 146# mypy147.mypy_cache/148.dmypy.json149dmypy.json150 151# Pyre type checker152.pyre/153 154# pytype static type analyzer155.pytype/156 157# Cython debug symbols158cython_debug/159 160# PyCharm161#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can162#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore163#  and can be added to the global gitignore or merged into this file.  For a more nuclear164#  option (not recommended) you can uncomment the following to ignore the entire idea folder.165#.idea/166 167# macOS168.DS_Store169