.gitignore 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. __pycache__/
  2. .venv*
  3. test_weights.npz
  4. .exo_used_ports
  5. .exo_node_id
  6. .idea
  7. .DS_Store
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. *.py[cod]
  11. *$py.class
  12. # C extensions
  13. *.so
  14. # Distribution / packaging
  15. /.Python
  16. /develop-eggs/
  17. /dist/
  18. /downloads/
  19. /eggs/
  20. /.eggs/
  21. /lib/
  22. /lib64/
  23. /parts/
  24. /sdist/
  25. /var/
  26. /wheels/
  27. /share/python-wheels/
  28. /*.egg-info/
  29. /.installed.cfg
  30. /*.egg
  31. /MANIFEST
  32. # PyInstaller
  33. # Usually these files are written by a python script from a template
  34. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  35. *.manifest
  36. *.spec
  37. # Installer logs
  38. pip-log.txt
  39. pip-delete-this-directory.txt
  40. # Unit test / coverage reports
  41. htmlcov/
  42. .tox/
  43. .nox/
  44. .coverage
  45. .coverage.*
  46. .cache
  47. nosetests.xml
  48. coverage.xml
  49. *.cover
  50. *.py,cover
  51. .hypothesis/
  52. .pytest_cache/
  53. cover/
  54. # Translations
  55. *.mo
  56. *.pot
  57. # Django stuff:
  58. *.log
  59. local_settings.py
  60. db.sqlite3
  61. db.sqlite3-journal
  62. # Flask stuff:
  63. instance/
  64. .webassets-cache
  65. # Scrapy stuff:
  66. .scrapy
  67. # Sphinx documentation
  68. docs/_build/
  69. # PyBuilder
  70. .pybuilder/
  71. target/
  72. # Jupyter Notebook
  73. .ipynb_checkpoints
  74. Untitled.ipynb
  75. # IPython
  76. profile_default/
  77. ipython_config.py
  78. # pyenv
  79. # For a library or package, you might want to ignore these files since the code is
  80. # intended to run in multiple environments; otherwise, check them in:
  81. # .python-version
  82. # pipenv
  83. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  84. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  85. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  86. # install all needed dependencies.
  87. #Pipfile.lock
  88. # poetry
  89. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  90. # This is especially recommended for binary packages to ensure reproducibility, and is more
  91. # commonly ignored for libraries.
  92. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  93. #poetry.lock
  94. # pdm
  95. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  96. #pdm.lock
  97. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  98. # in version control.
  99. # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
  100. .pdm.toml
  101. .pdm-python
  102. .pdm-build/
  103. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  104. __pypackages__/
  105. # Celery stuff
  106. celerybeat-schedule
  107. celerybeat.pid
  108. # SageMath parsed files
  109. *.sage.py
  110. # Environments
  111. .env
  112. .venv
  113. env/
  114. venv/
  115. ENV/
  116. env.bak/
  117. venv.bak/
  118. # Spyder project settings
  119. .spyderproject
  120. .spyproject
  121. # Rope project settings
  122. .ropeproject
  123. # mkdocs documentation
  124. /site
  125. # mypy
  126. .mypy_cache/
  127. .dmypy.json
  128. dmypy.json
  129. # Pyre type checker
  130. .pyre/
  131. # pytype static type analyzer
  132. .pytype/
  133. # Cython debug symbols
  134. cython_debug/
  135. # PyCharm
  136. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  137. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  138. # and can be added to the global gitignore or merged into this file. For a more nuclear
  139. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  140. #.idea/
  141. **/*.xcodeproj/*
  142. .aider*
  143. exo/tinychat/images/*.png