34 lines
581 B
Plaintext
34 lines
581 B
Plaintext
# Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*.pyo
|
||
*.pyd
|
||
|
||
# PyInstaller build artifacts
|
||
build/
|
||
*.spec.bak
|
||
|
||
# Do NOT ignore dist/ — screener_gui.py and stock_screener.py live there
|
||
# but DO ignore the compiled exe (too large for git, distribute via releases)
|
||
dist/StockScreener.exe
|
||
|
||
# Temporary copies created during build (build.bat cleans these, but just in case)
|
||
/screener_gui.py
|
||
/stock_screener.py
|
||
|
||
# Admin/secrets — NEVER commit these
|
||
issue_license.py
|
||
push_update.py
|
||
|
||
# OS
|
||
.DS_Store
|
||
Thumbs.db
|
||
desktop.ini
|
||
|
||
# IDE
|
||
.vscode/
|
||
.idea/
|
||
*.sublime-project
|
||
*.sublime-workspace
|
||
. |