CoolFace
Apppublic

MathProfessionalDevelopment/module1

sourceHugging Faceapache-2.0updated 21d agoView on Hugging Face
0likes
.gitignore176 linesDownload Raw Back to root
1.env2 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# UV100#   Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.101#   This is especially recommended for binary packages to ensure reproducibility, and is more102#   commonly ignored for libraries.103#uv.lock104 105# poetry106#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.107#   This is especially recommended for binary packages to ensure reproducibility, and is more108#   commonly ignored for libraries.109#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control110#poetry.lock111 112# pdm113#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.114#pdm.lock115#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it116#   in version control.117#   https://pdm.fming.dev/latest/usage/project/#working-with-version-control118.pdm.toml119.pdm-python120.pdm-build/121 122# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm123__pypackages__/124 125# Celery stuff126celerybeat-schedule127celerybeat.pid128 129# SageMath parsed files130*.sage.py131 132# Environments133.env134.venv135env/136venv/137ENV/138env.bak/139venv.bak/140 141# Spyder project settings142.spyderproject143.spyproject144 145# Rope project settings146.ropeproject147 148# mkdocs documentation149/site150 151# mypy152.mypy_cache/153.dmypy.json154dmypy.json155 156# Pyre type checker157.pyre/158 159# pytype static type analyzer160.pytype/161 162# Cython debug symbols163cython_debug/164 165# PyCharm166#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can167#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore168#  and can be added to the global gitignore or merged into this file.  For a more nuclear169#  option (not recommended) you can uncomment the following to ignore the entire idea folder.170#.idea/171 172# Ruff stuff:173.ruff_cache/174 175# PyPI configuration file176.pypirc