Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,34 @@
Nothing needs to be added to the .gitignore file based on the provided file changes, as they consist only of source code files (.ps1 and .py) without any build artifacts, dependencies, or temporary files that should be ignored.
```
# Python
__pycache__/
*.pyc
*.pyo
*.pyd

# Dependencies
venv/
.venv/
.env
.env.local
*.env.*

# Tests
.pytest_cache/
.coverage
coverage/

# Build artifacts
build/
dist/
*.egg-info/

# Editors
.vscode/
.idea/
*.swp
*.swo

# System
.DS_Store
Thumbs.db
```
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ tensorflow-model-optimization==0.7.5
librosa==0.10.1
soundfile==0.12.1
pyaudio==0.2.11
sounddevice==0.4.6

# === SCIENTIFIC COMPUTING ===
numpy==1.24.3
Expand Down
Empty file added tests/__init__.py
Empty file.
Empty file added tests/security/__init__.py
Empty file.
Loading