chore: gitignore python build artifacts (untrack pycache/egg-info)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
root
2026-06-01 22:23:06 +10:00
parent 16497bd9db
commit 3988425e67
29 changed files with 3 additions and 55 deletions

3
.gitignore vendored
View File

@@ -4,3 +4,6 @@ node_modules/
coverage/
.DS_Store
.superpowers/
__pycache__/
*.egg-info/
*.pyc

View File

@@ -1,21 +0,0 @@
Metadata-Version: 2.4
Name: void-workers
Version: 0.1.0
Requires-Python: >=3.12
Requires-Dist: psycopg[binary,pool]>=3.2
Requires-Dist: structlog>=24.1
Provides-Extra: pdf
Requires-Dist: pdfplumber>=0.11; extra == "pdf"
Requires-Dist: pytesseract>=0.3.13; extra == "pdf"
Requires-Dist: pillow>=10.3; extra == "pdf"
Provides-Extra: image
Requires-Dist: pytesseract>=0.3.13; extra == "image"
Requires-Dist: pillow>=10.3; extra == "image"
Provides-Extra: video
Requires-Dist: yt-dlp>=2024.10.0; extra == "video"
Requires-Dist: faster-whisper>=1.0.3; extra == "video"
Provides-Extra: test
Requires-Dist: pytest>=8.0; extra == "test"
Requires-Dist: pytest-asyncio>=0.23; extra == "test"
Provides-Extra: all
Requires-Dist: void-workers[image,pdf,test,video]; extra == "all"

View File

@@ -1,10 +0,0 @@
README.md
pyproject.toml
void_workers/__init__.py
void_workers/config.py
void_workers/log.py
void_workers.egg-info/PKG-INFO
void_workers.egg-info/SOURCES.txt
void_workers.egg-info/dependency_links.txt
void_workers.egg-info/requires.txt
void_workers.egg-info/top_level.txt

View File

@@ -1,22 +0,0 @@
psycopg[binary,pool]>=3.2
structlog>=24.1
[all]
void-workers[image,pdf,test,video]
[image]
pytesseract>=0.3.13
pillow>=10.3
[pdf]
pdfplumber>=0.11
pytesseract>=0.3.13
pillow>=10.3
[test]
pytest>=8.0
pytest-asyncio>=0.23
[video]
yt-dlp>=2024.10.0
faster-whisper>=1.0.3

View File

@@ -1 +0,0 @@
void_workers