chore: gitignore *.egg-info, remove committed egg-info
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ab8895d28b
commit
90c8e77bf7
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -15,6 +15,7 @@ __pycache__/
|
|||
*$py.class
|
||||
venv/
|
||||
.venv/
|
||||
*.egg-info/
|
||||
|
||||
# Tools
|
||||
.aider*
|
||||
|
|
|
|||
|
|
@ -1,17 +0,0 @@
|
|||
Metadata-Version: 2.4
|
||||
Name: ha-diag-agent
|
||||
Version: 0.1.0
|
||||
Requires-Python: >=3.11
|
||||
Requires-Dist: aiohttp>=3.9
|
||||
Requires-Dist: fastapi>=0.110
|
||||
Requires-Dist: uvicorn[standard]>=0.29
|
||||
Requires-Dist: pydantic>=2.6
|
||||
Requires-Dist: pydantic-settings>=2.2
|
||||
Requires-Dist: apscheduler>=3.10
|
||||
Requires-Dist: aiosqlite>=0.20
|
||||
Requires-Dist: structlog>=24.1
|
||||
Requires-Dist: pyyaml>=6.0
|
||||
Provides-Extra: dev
|
||||
Requires-Dist: pytest>=8.1; extra == "dev"
|
||||
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
|
||||
Requires-Dist: aioresponses>=0.7; extra == "dev"
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
README.md
|
||||
pyproject.toml
|
||||
src/ha_diag/__init__.py
|
||||
src/ha_diag/api.py
|
||||
src/ha_diag/config.py
|
||||
src/ha_diag/event_emitter.py
|
||||
src/ha_diag/ha_client.py
|
||||
src/ha_diag/main.py
|
||||
src/ha_diag/models.py
|
||||
src/ha_diag/storage.py
|
||||
src/ha_diag/checks/__init__.py
|
||||
src/ha_diag/checks/base.py
|
||||
src/ha_diag/checks/heartbeat.py
|
||||
src/ha_diag_agent.egg-info/PKG-INFO
|
||||
src/ha_diag_agent.egg-info/SOURCES.txt
|
||||
src/ha_diag_agent.egg-info/dependency_links.txt
|
||||
src/ha_diag_agent.egg-info/requires.txt
|
||||
src/ha_diag_agent.egg-info/top_level.txt
|
||||
tests/test_event_emitter.py
|
||||
tests/test_ha_client.py
|
||||
tests/test_heartbeat_check.py
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
aiohttp>=3.9
|
||||
fastapi>=0.110
|
||||
uvicorn[standard]>=0.29
|
||||
pydantic>=2.6
|
||||
pydantic-settings>=2.2
|
||||
apscheduler>=3.10
|
||||
aiosqlite>=0.20
|
||||
structlog>=24.1
|
||||
pyyaml>=6.0
|
||||
|
||||
[dev]
|
||||
pytest>=8.1
|
||||
pytest-asyncio>=0.23
|
||||
aioresponses>=0.7
|
||||
|
|
@ -1 +0,0 @@
|
|||
ha_diag
|
||||
Loading…
Reference in a new issue