up
Browse files- .gitignore +125 -145
.gitignore
CHANGED
|
@@ -1,164 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Byte-compiled / optimized / DLL files
|
| 2 |
__pycache__/
|
| 3 |
*.py[cod]
|
| 4 |
*$py.class
|
| 5 |
|
| 6 |
-
# C extensions
|
| 7 |
-
*.so
|
| 8 |
-
|
| 9 |
# Distribution / packaging
|
| 10 |
-
.Python
|
| 11 |
build/
|
| 12 |
-
develop-eggs/
|
| 13 |
dist/
|
| 14 |
-
downloads/
|
| 15 |
eggs/
|
| 16 |
.eggs/
|
| 17 |
-
lib/
|
| 18 |
-
lib64/
|
| 19 |
-
parts/
|
| 20 |
-
sdist/
|
| 21 |
-
var/
|
| 22 |
-
wheels/
|
| 23 |
-
share/python-wheels/
|
| 24 |
*.egg-info/
|
| 25 |
-
.installed.cfg
|
| 26 |
*.egg
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
# PyInstaller
|
| 30 |
-
# Usually these files are written by a python script from a template
|
| 31 |
-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
| 32 |
-
*.manifest
|
| 33 |
-
*.spec
|
| 34 |
-
|
| 35 |
-
# Installer logs
|
| 36 |
-
pip-log.txt
|
| 37 |
-
pip-delete-this-directory.txt
|
| 38 |
|
| 39 |
# Unit test / coverage reports
|
| 40 |
-
htmlcov/
|
| 41 |
-
.tox/
|
| 42 |
-
.nox/
|
| 43 |
.coverage
|
| 44 |
-
.
|
| 45 |
-
.
|
| 46 |
-
nosetests.xml
|
| 47 |
-
coverage.xml
|
| 48 |
-
*.cover
|
| 49 |
-
*.py,cover
|
| 50 |
-
.hypothesis/
|
| 51 |
.pytest_cache/
|
| 52 |
-
cover/
|
| 53 |
-
|
| 54 |
-
# Translations
|
| 55 |
-
*.mo
|
| 56 |
-
*.pot
|
| 57 |
-
|
| 58 |
-
# Django stuff:
|
| 59 |
-
*.log
|
| 60 |
-
local_settings.py
|
| 61 |
-
db.sqlite3
|
| 62 |
-
db.sqlite3-journal
|
| 63 |
-
|
| 64 |
-
# Flask stuff:
|
| 65 |
-
instance/
|
| 66 |
-
.webassets-cache
|
| 67 |
-
|
| 68 |
-
# Scrapy stuff:
|
| 69 |
-
.scrapy
|
| 70 |
-
|
| 71 |
-
# Sphinx documentation
|
| 72 |
-
docs/_build/
|
| 73 |
-
|
| 74 |
-
# PyBuilder
|
| 75 |
-
.pybuilder/
|
| 76 |
-
target/
|
| 77 |
-
|
| 78 |
-
# Jupyter Notebook
|
| 79 |
-
.ipynb_checkpoints
|
| 80 |
-
|
| 81 |
-
# IPython
|
| 82 |
-
profile_default/
|
| 83 |
-
ipython_config.py
|
| 84 |
-
|
| 85 |
-
# pyenv
|
| 86 |
-
# For a library or package, you might want to ignore these files since the code is
|
| 87 |
-
# intended to run in multiple environments; otherwise, check them in:
|
| 88 |
-
# .python-version
|
| 89 |
-
|
| 90 |
-
# pipenv
|
| 91 |
-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
| 92 |
-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
| 93 |
-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
| 94 |
-
# install all needed dependencies.
|
| 95 |
-
#Pipfile.lock
|
| 96 |
-
|
| 97 |
-
# poetry
|
| 98 |
-
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
| 99 |
-
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
| 100 |
-
# commonly ignored for libraries.
|
| 101 |
-
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
| 102 |
-
#poetry.lock
|
| 103 |
-
|
| 104 |
-
# pdm
|
| 105 |
-
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
| 106 |
-
#pdm.lock
|
| 107 |
-
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
| 108 |
-
# in version control.
|
| 109 |
-
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
| 110 |
-
.pdm.toml
|
| 111 |
-
.pdm-python
|
| 112 |
-
.pdm-build/
|
| 113 |
-
|
| 114 |
-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
| 115 |
-
__pypackages__/
|
| 116 |
-
|
| 117 |
-
# Celery stuff
|
| 118 |
-
celerybeat-schedule
|
| 119 |
-
celerybeat.pid
|
| 120 |
-
|
| 121 |
-
# SageMath parsed files
|
| 122 |
-
*.sage.py
|
| 123 |
-
|
| 124 |
-
# Environments
|
| 125 |
-
.env
|
| 126 |
-
.venv
|
| 127 |
-
env/
|
| 128 |
-
venv/
|
| 129 |
-
ENV/
|
| 130 |
-
env.bak/
|
| 131 |
-
venv.bak/
|
| 132 |
-
|
| 133 |
-
# Spyder project settings
|
| 134 |
-
.spyderproject
|
| 135 |
-
.spyproject
|
| 136 |
-
|
| 137 |
-
# Rope project settings
|
| 138 |
-
.ropeproject
|
| 139 |
-
|
| 140 |
-
# mkdocs documentation
|
| 141 |
-
/site
|
| 142 |
-
|
| 143 |
-
# mypy
|
| 144 |
.mypy_cache/
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
|
| 151 |
-
#
|
| 152 |
-
.pytype/
|
| 153 |
-
|
| 154 |
-
# Cython debug symbols
|
| 155 |
-
cython_debug/
|
| 156 |
-
|
| 157 |
-
# PyCharm
|
| 158 |
-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
| 159 |
-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
| 160 |
-
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
| 161 |
-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
| 162 |
-
#.idea/
|
| 163 |
-
pyproject.toml
|
| 164 |
.python-version
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
results/
|
| 2 |
+
########################################################################
|
| 3 |
+
# Python - https://github.com/github/gitignore/blob/master/Python.gitignore
|
| 4 |
+
########################################################################
|
| 5 |
# Byte-compiled / optimized / DLL files
|
| 6 |
__pycache__/
|
| 7 |
*.py[cod]
|
| 8 |
*$py.class
|
| 9 |
|
|
|
|
|
|
|
|
|
|
| 10 |
# Distribution / packaging
|
|
|
|
| 11 |
build/
|
|
|
|
| 12 |
dist/
|
|
|
|
| 13 |
eggs/
|
| 14 |
.eggs/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
*.egg-info/
|
|
|
|
| 16 |
*.egg
|
| 17 |
+
.prerelease-version
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
# Unit test / coverage reports
|
|
|
|
|
|
|
|
|
|
| 20 |
.coverage
|
| 21 |
+
coverage.json
|
| 22 |
+
.coverage\.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
.pytest_cache/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
.mypy_cache/
|
| 25 |
+
test-reports
|
| 26 |
+
htmlcov
|
| 27 |
+
.hypothesis
|
| 28 |
+
.ruff_cache
|
| 29 |
+
cffi_bin
|
| 30 |
|
| 31 |
+
# Pyenv / uv Stuff
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
.python-version
|
| 33 |
+
venv
|
| 34 |
+
.venv
|
| 35 |
+
Pipfile.lock
|
| 36 |
+
Pipfile
|
| 37 |
+
|
| 38 |
+
# Others
|
| 39 |
+
.pytype
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
########################################################################
|
| 43 |
+
# OSX - https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
|
| 44 |
+
########################################################################
|
| 45 |
+
.DS_Store
|
| 46 |
+
.DocumentRevisions-V100
|
| 47 |
+
.fseventsd
|
| 48 |
+
.Spotlight-V100
|
| 49 |
+
.TemporaryItems
|
| 50 |
+
.Trashes
|
| 51 |
+
.VolumeIcon.icns
|
| 52 |
+
.com.apple.timemachine.donotpresent
|
| 53 |
+
|
| 54 |
+
########################################################################
|
| 55 |
+
# node - https://github.com/github/gitignore/blob/master/Node.gitignore
|
| 56 |
+
########################################################################
|
| 57 |
+
# Logs
|
| 58 |
+
npm-debug.log*
|
| 59 |
+
yarn-debug.log*
|
| 60 |
+
yarn-error.log*
|
| 61 |
+
|
| 62 |
+
# Yarn files
|
| 63 |
+
**/.yarn/*
|
| 64 |
+
!**/.yarn/patches
|
| 65 |
+
!**/.yarn/plugins
|
| 66 |
+
!**/.yarn/releases
|
| 67 |
+
!**/.yarn/sdks
|
| 68 |
+
!**/.yarn/versions
|
| 69 |
+
|
| 70 |
+
# Dependency directories
|
| 71 |
+
node_modules/
|
| 72 |
+
|
| 73 |
+
# TS Build files
|
| 74 |
+
tsconfig.tsbuildinfo
|
| 75 |
+
|
| 76 |
+
# ESLint
|
| 77 |
+
.eslintcache
|
| 78 |
+
|
| 79 |
+
# Coverage directory used by tools like istanbul
|
| 80 |
+
coverage/
|
| 81 |
+
|
| 82 |
+
########################################################################
|
| 83 |
+
# Streamlit
|
| 84 |
+
########################################################################
|
| 85 |
+
.streamlit/
|
| 86 |
+
!e2e_playwright/.streamlit/
|
| 87 |
+
lib/streamlit/static
|
| 88 |
+
streamlit-storage
|
| 89 |
+
# Directory for temporary files (can be used by agents):
|
| 90 |
+
work-tmp
|
| 91 |
+
|
| 92 |
+
# Data Files
|
| 93 |
+
**/uber-raw-data-sep14.csv
|
| 94 |
+
|
| 95 |
+
# Autogenerated Protobufs
|
| 96 |
+
lib/streamlit/proto/*_pb2.py
|
| 97 |
+
lib/streamlit/proto/*_pb2.pyi
|
| 98 |
+
frontend/protobuf/proto.js
|
| 99 |
+
frontend/protobuf/proto.d.ts
|
| 100 |
+
|
| 101 |
+
########################################################################
|
| 102 |
+
# JetBrains
|
| 103 |
+
########################################################################
|
| 104 |
+
.idea
|
| 105 |
+
|
| 106 |
+
########################################################################
|
| 107 |
+
# Playwright
|
| 108 |
+
########################################################################
|
| 109 |
+
# Playwright test
|
| 110 |
+
playwright-report
|
| 111 |
+
e2e_playwright/test-results
|
| 112 |
+
# Only keep the snapshots in the linux folder
|
| 113 |
+
e2e_playwright/__snapshots__/*
|
| 114 |
+
!e2e_playwright/__snapshots__/linux
|
| 115 |
+
|
| 116 |
+
########################################################################
|
| 117 |
+
# VSCode
|
| 118 |
+
########################################################################
|
| 119 |
+
.vscode/*
|
| 120 |
+
!.vscode/extensions.json
|
| 121 |
+
!.vscode/launch.json
|
| 122 |
+
!.vscode/settings.json
|
| 123 |
+
|
| 124 |
+
.swc/
|
| 125 |
+
|
| 126 |
+
# Performance suite output
|
| 127 |
+
**/.benchmarks/
|
| 128 |
+
|
| 129 |
+
|
| 130 |
+
########################################################################
|
| 131 |
+
# Files during CI runs
|
| 132 |
+
########################################################################
|
| 133 |
+
protoc-*-linux-x86_64.zip
|
| 134 |
+
python_cache_key.md5
|
| 135 |
+
|
| 136 |
+
plots/
|
| 137 |
+
testfiles/
|
| 138 |
+
asc_files.zip
|
| 139 |
+
tests/test_utils.py
|
| 140 |
+
configs/
|
| 141 |
+
.vscode/
|
| 142 |
+
*.csv
|
| 143 |
+
*.log
|
| 144 |
+
*.png
|