CoolFace
Apppublic

OpenMotionLab/MotionGPT

sourceHugging Facemitupdated 1y agoView on Hugging Face
118likes
.gitignore165 linesDownload Raw Back to root
1# Byte-compiled / optimized / DLL files2__pycache__/3*.py[cod]4*$py.class5 6# C extensions7*.so8.DS_Store9pyglet10app2.py11cache12 13# Distribution / packaging14.Python15build/16develop-eggs/17dist/18downloads/19eggs/20.eggs/21lib/22lib64/23parts/24sdist/25var/26wheels/27share/python-wheels/28*.egg-info/29.installed.cfg30*.egg31MANIFEST32 33# PyInstaller34#  Usually these files are written by a python script from a template35#  before PyInstaller builds the exe, so as to inject date/other infos into it.36*.manifest37*.spec38 39# Installer logs40pip-log.txt41pip-delete-this-directory.txt42 43# Unit test / coverage reports44htmlcov/45.tox/46.nox/47.coverage48.coverage.*49.cache50nosetests.xml51coverage.xml52*.cover53*.py,cover54.hypothesis/55.pytest_cache/56cover/57 58# Translations59*.mo60*.pot61 62# Django stuff:63*.log64local_settings.py65db.sqlite366db.sqlite3-journal67 68# Flask stuff:69instance/70.webassets-cache71 72# Scrapy stuff:73.scrapy74 75# Sphinx documentation76docs/_build/77 78# PyBuilder79.pybuilder/80target/81 82# Jupyter Notebook83.ipynb_checkpoints84 85# IPython86profile_default/87ipython_config.py88 89# pyenv90#   For a library or package, you might want to ignore these files since the code is91#   intended to run in multiple environments; otherwise, check them in:92# .python-version93 94# pipenv95#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.96#   However, in case of collaboration, if having platform-specific dependencies or dependencies97#   having no cross-platform support, pipenv may install dependencies that don't work, or not98#   install all needed dependencies.99#Pipfile.lock100 101# poetry102#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.103#   This is especially recommended for binary packages to ensure reproducibility, and is more104#   commonly ignored for libraries.105#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control106#poetry.lock107 108# pdm109#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.110#pdm.lock111#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it112#   in version control.113#   https://pdm.fming.dev/#use-with-ide114.pdm.toml115 116# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm117__pypackages__/118 119# Celery stuff120celerybeat-schedule121celerybeat.pid122 123# SageMath parsed files124*.sage.py125 126# Environments127.env128.venv129env/130venv/131ENV/132env.bak/133venv.bak/134 135# Spyder project settings136.spyderproject137.spyproject138 139# Rope project settings140.ropeproject141 142# mkdocs documentation143/site144 145# mypy146.mypy_cache/147.dmypy.json148dmypy.json149 150# Pyre type checker151.pyre/152 153# pytype static type analyzer154.pytype/155 156# Cython debug symbols157cython_debug/158 159# PyCharm160#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can161#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore162#  and can be added to the global gitignore or merged into this file.  For a more nuclear163#  option (not recommended) you can uncomment the following to ignore the entire idea folder.164#.idea/165