[project]
name = "wittyhub"
version = "0.1.0"
description = "WittyHub Platform for Agent and Skill Discovery"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "WittyHub Team"}
]
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"sqlalchemy>=2.0.25",
"asyncpg>=0.29.0",
"psycopg2-binary>=2.9.9",
"alembic>=1.13.1",
"meilisearch>=0.28.0",
"pydantic>=2.5.3",
"pydantic-settings>=2.1.0",
"python-dotenv>=1.0.0",
"httpx>=0.26.0",
"aiohttp>=3.9.1",
"lxml>=5.0.0",
"PyYAML>=6.0.0",
"rich>=13.7.0",
"typer>=0.9.0",
"click>=8.1.7",
"structlog>=24.1.0",
"python-multipart>=0.0.6",
"aiofiles>=23.2.1",
"pillow>=10.2.0",
"pgvector>=0.3.6",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.4",
"pytest-asyncio>=0.23.3",
"pytest-cov>=4.1.0",
"httpx>=0.26.0",
"ruff>=0.1.13",
"mypy>=1.8.0",
"pre-commit>=3.6.0",
"aiosqlite>=0.19.0",
]
[project.scripts]
wittyhub = "src.cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src.api", "src.cli", "src.core", "src.security", "src.indexer", "src.storage", "src.utils"]
[tool.hatch.build.targets.src]
packages = ["src.api", "src.cli", "src.core", "src.security", "src.indexer", "src.storage", "src.utils"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "C4"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
strict = false
warn_return_any = true
warn_unused_ignores = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"integration: slow tests that require real external services (Jenkins, etc.)",
]