update .gitignore
This commit is contained in:
255
.gitignore
vendored
255
.gitignore
vendored
@@ -1,150 +1,145 @@
|
|||||||
# Byte-compiled / optimized / DLL files
|
# =============================================================================
|
||||||
|
# .gitignore - YT Local
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Python / Bytecode
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
|
|
||||||
# C extensions
|
|
||||||
*.so
|
*.so
|
||||||
|
|
||||||
# Distribution / packaging
|
|
||||||
.Python
|
.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
|
# -----------------------------------------------------------------------------
|
||||||
*.manifest
|
# Virtual Environments
|
||||||
*.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/
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
*.mo
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
# pyenv
|
|
||||||
.python-version
|
|
||||||
|
|
||||||
# pipenv
|
|
||||||
Pipfile.lock
|
|
||||||
|
|
||||||
# PEP 582
|
|
||||||
__pypackages__/
|
|
||||||
|
|
||||||
# Celery stuff
|
|
||||||
celerybeat-schedule
|
|
||||||
celerybeat.pid
|
|
||||||
|
|
||||||
# SageMath parsed files
|
|
||||||
*.sage.py
|
|
||||||
|
|
||||||
# Environments
|
|
||||||
.env
|
.env
|
||||||
.venv
|
.env.*
|
||||||
env/
|
!.env.example
|
||||||
|
.venv/
|
||||||
venv/
|
venv/
|
||||||
ENV/
|
ENV/
|
||||||
env.bak/
|
env/
|
||||||
venv.bak/
|
*.egg-info/
|
||||||
*venv*
|
.eggs/
|
||||||
|
|
||||||
# Spyder project settings
|
# -----------------------------------------------------------------------------
|
||||||
.spyderproject
|
# IDE / Editors
|
||||||
.spyproject
|
# -----------------------------------------------------------------------------
|
||||||
|
|
||||||
# Rope project settings
|
|
||||||
.ropeproject
|
|
||||||
|
|
||||||
# mkdocs documentation
|
|
||||||
/site
|
|
||||||
|
|
||||||
# mypy
|
|
||||||
.mypy_cache/
|
|
||||||
.dmypy.json
|
|
||||||
dmypy.json
|
|
||||||
|
|
||||||
# Pyre type checker
|
|
||||||
.pyre/
|
|
||||||
|
|
||||||
# Project specific
|
|
||||||
debug/
|
|
||||||
data/
|
|
||||||
python/
|
|
||||||
release/
|
|
||||||
yt-local/
|
|
||||||
banned_addresses.txt
|
|
||||||
settings.txt
|
|
||||||
get-pip.py
|
|
||||||
latest-dist.zip
|
|
||||||
*.7z
|
|
||||||
*.zip
|
|
||||||
|
|
||||||
# Editor specific
|
|
||||||
flycheck_*
|
|
||||||
.vscode/
|
.vscode/
|
||||||
.idea/
|
.idea/
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
*~
|
*~
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.flycheck_*
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
# Temporary files
|
# -----------------------------------------------------------------------------
|
||||||
|
# Distribution / Packaging
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
*.egg
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
pip-wheel-metadata/
|
||||||
|
share/python-wheels/
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Testing / Coverage
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
.pytest_cache/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Type Checking / Linting
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Jupyter / IPython
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
.ipynb_checkpoints
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Python Tools
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# pyenv
|
||||||
|
.python-version
|
||||||
|
# pipenv
|
||||||
|
Pipfile.lock
|
||||||
|
# PEP 582
|
||||||
|
__pypackages__/
|
||||||
|
# Celery
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
# Sphinx
|
||||||
|
docs/_build/
|
||||||
|
# PyBuilder
|
||||||
|
target/
|
||||||
|
# Scrapy
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Web Frameworks
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Django
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
# Flask
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Documentation
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# mkdocs
|
||||||
|
/site
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Project Specific - YT Local
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Data & Debug
|
||||||
|
data/
|
||||||
|
debug/
|
||||||
|
|
||||||
|
# Release artifacts
|
||||||
|
release/
|
||||||
|
yt-local/
|
||||||
|
get-pip.py
|
||||||
|
latest-dist.zip
|
||||||
|
*.7z
|
||||||
|
*.zip
|
||||||
|
|
||||||
|
# Configuration (contains user-specific data)
|
||||||
|
settings.txt
|
||||||
|
banned_addresses.txt
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Temporary / Backup Files
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
*.log
|
||||||
*.tmp
|
*.tmp
|
||||||
*.bak
|
*.bak
|
||||||
*.orig
|
*.orig
|
||||||
|
*.cache/
|
||||||
|
|||||||
Reference in New Issue
Block a user