CoolFace
Apppublic

AFindex/TRELLIS.2

sourceHugging Facemitupdated 9mo agoView on Hugging Face
0likes
.gitignore207 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/22share/python-wheels/23*.egg-info/24.installed.cfg25*.egg26MANIFEST27 28# PyInstaller29#  Usually these files are written by a python script from a template30#  before PyInstaller builds the exe, so as to inject date/other infos into it.31*.manifest32*.spec33 34# Installer logs35pip-log.txt36pip-delete-this-directory.txt37 38# Unit test / coverage reports39htmlcov/40.tox/41.nox/42.coverage43.coverage.*44.cache45nosetests.xml46coverage.xml47*.cover48*.py.cover49.hypothesis/50.pytest_cache/51cover/52 53# Translations54*.mo55*.pot56 57# Django stuff:58*.log59local_settings.py60db.sqlite361db.sqlite3-journal62 63# Flask stuff:64instance/65.webassets-cache66 67# Scrapy stuff:68.scrapy69 70# Sphinx documentation71docs/_build/72 73# PyBuilder74.pybuilder/75target/76 77# Jupyter Notebook78.ipynb_checkpoints79 80# IPython81profile_default/82ipython_config.py83 84# pyenv85#   For a library or package, you might want to ignore these files since the code is86#   intended to run in multiple environments; otherwise, check them in:87# .python-version88 89# pipenv90#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.91#   However, in case of collaboration, if having platform-specific dependencies or dependencies92#   having no cross-platform support, pipenv may install dependencies that don't work, or not93#   install all needed dependencies.94#Pipfile.lock95 96# UV97#   Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.98#   This is especially recommended for binary packages to ensure reproducibility, and is more99#   commonly ignored for libraries.100#uv.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#poetry.toml109 110# pdm111#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.112#   pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.113#   https://pdm-project.org/en/latest/usage/project/#working-with-version-control114#pdm.lock115#pdm.toml116.pdm-python117.pdm-build/118 119# pixi120#   Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.121#pixi.lock122#   Pixi creates a virtual environment in the .pixi directory, just like venv module creates one123#   in the .venv directory. It is recommended not to include this directory in version control.124.pixi125 126# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm127__pypackages__/128 129# Celery stuff130celerybeat-schedule131celerybeat.pid132 133# SageMath parsed files134*.sage.py135 136# Environments137.env138.envrc139.venv140env/141venv/142ENV/143env.bak/144venv.bak/145 146# Spyder project settings147.spyderproject148.spyproject149 150# Rope project settings151.ropeproject152 153# mkdocs documentation154/site155 156# mypy157.mypy_cache/158.dmypy.json159dmypy.json160 161# Pyre type checker162.pyre/163 164# pytype static type analyzer165.pytype/166 167# Cython debug symbols168cython_debug/169 170# PyCharm171#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can172#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore173#  and can be added to the global gitignore or merged into this file.  For a more nuclear174#  option (not recommended) you can uncomment the following to ignore the entire idea folder.175#.idea/176 177# Abstra178# Abstra is an AI-powered process automation framework.179# Ignore directories containing user credentials, local state, and settings.180# Learn more at https://abstra.io/docs181.abstra/182 183# Visual Studio Code184#  Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore 185#  that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore186#  and can be added to the global gitignore or merged into this file. However, if you prefer, 187#  you could uncomment the following to ignore the entire vscode folder188# .vscode/189 190# Ruff stuff:191.ruff_cache/192 193# PyPI configuration file194.pypirc195 196# Cursor197#  Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to198#  exclude from AI features like autocomplete and code analysis. Recommended for sensitive data199#  refer to https://docs.cursor.com/context/ignore-files200.cursorignore201.cursorindexingignore202 203# Marimo204marimo/_static/205marimo/_lsp/206__marimo__/207