chore: add .gitignore, remove tracked pycache and egg-info

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
caoimhinr 2026-05-25 19:23:17 +02:00
parent 37b2c21720
commit ff7620d5ed
12 changed files with 7 additions and 47 deletions

7
.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
__pycache__/
*.pyc
*.egg-info/
.env
dist/
build/
*.db

View file

@ -1,18 +0,0 @@
Metadata-Version: 2.4
Name: corvid
Version: 0.1.0
Summary: Standalone ticket management service for AI agents
Requires-Python: >=3.12
Requires-Dist: fastapi>=0.115
Requires-Dist: sqlalchemy[asyncio]>=2.0
Requires-Dist: asyncpg>=0.30
Requires-Dist: uvicorn[standard]>=0.32
Requires-Dist: alembic>=1.14
Requires-Dist: pydantic>=2.0
Provides-Extra: mcp
Requires-Dist: mcp[cli]>=1.0; extra == "mcp"
Requires-Dist: httpx>=0.28; extra == "mcp"
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.24; extra == "dev"
Requires-Dist: aiosqlite>=0.20; extra == "dev"

View file

@ -1,12 +0,0 @@
pyproject.toml
corvid/__init__.py
corvid/config.py
corvid/database.py
corvid/main.py
corvid/models.py
corvid/router.py
corvid.egg-info/PKG-INFO
corvid.egg-info/SOURCES.txt
corvid.egg-info/dependency_links.txt
corvid.egg-info/requires.txt
corvid.egg-info/top_level.txt

View file

@ -1 +0,0 @@

View file

@ -1,15 +0,0 @@
fastapi>=0.115
sqlalchemy[asyncio]>=2.0
asyncpg>=0.30
uvicorn[standard]>=0.32
alembic>=1.14
pydantic>=2.0
[dev]
pytest>=8.0
pytest-asyncio>=0.24
aiosqlite>=0.20
[mcp]
mcp[cli]>=1.0
httpx>=0.28

View file

@ -1 +0,0 @@
corvid