Loading .gitignore 0 → 100644 +163 −0 Original line number Diff line number Diff line # Specific file to ignore nodes.ini # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a CI script in a temporary folder in the # repository, but as a rule of thumb they are not committed. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ pytestdebug.log # Translations *.mo *.pot *.po # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # PEP 582; __pypackages__ directory __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath files .sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # IDE specific files # JetBrains IDEs (PyCharm, IntelliJ, etc.) .idea/ *.iws *.iml # VSCode .vscode/ # Sublime Text *.sublime-project *.sublime-workspace # Emacs specific files *~ # Backup files (e.g., file.txt~) #* .#* # Lock files (e.g., .#file.txt) *.elc # Compiled Emacs Lisp files auto-save-list # Auto-save-list directory # Linux/Unix backup files (common convention) *.bak *.backup *.old *.orig # macOS specific .DS_Store .AppleDouble .LSOverride Thumbs.db .Spotlight-V100 .Trashes # Windows specific ehthumbs.db Desktop.ini Loading
.gitignore 0 → 100644 +163 −0 Original line number Diff line number Diff line # Specific file to ignore nodes.ini # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a CI script in a temporary folder in the # repository, but as a rule of thumb they are not committed. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ pytestdebug.log # Translations *.mo *.pot *.po # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # PEP 582; __pypackages__ directory __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath files .sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # IDE specific files # JetBrains IDEs (PyCharm, IntelliJ, etc.) .idea/ *.iws *.iml # VSCode .vscode/ # Sublime Text *.sublime-project *.sublime-workspace # Emacs specific files *~ # Backup files (e.g., file.txt~) #* .#* # Lock files (e.g., .#file.txt) *.elc # Compiled Emacs Lisp files auto-save-list # Auto-save-list directory # Linux/Unix backup files (common convention) *.bak *.backup *.old *.orig # macOS specific .DS_Store .AppleDouble .LSOverride Thumbs.db .Spotlight-V100 .Trashes # Windows specific ehthumbs.db Desktop.ini