Spaces:
Sleeping
Sleeping
| [build-system] | |
| requires = ["setuptools>=68.0", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "ingestion-ai-agent" | |
| version = "0.1.0" | |
| description = "AI agent for pharma/life science data ingestion — maps SAS metadata to internal templates" | |
| requires-python = ">=3.11" | |
| dependencies = [ | |
| "fastapi>=0.110.0", | |
| "uvicorn[standard]>=0.27.0", | |
| "openai>=1.30.0", | |
| "pyreadstat>=1.2.0", | |
| "pandas>=2.2.0", | |
| "openpyxl>=3.1.0", | |
| "xlrd>=2.0.1", | |
| "python-multipart>=0.0.9", | |
| "pydantic>=2.6.0", | |
| "pydantic-settings>=2.1.0", | |
| "jinja2>=3.1.0", | |
| "charset-normalizer>=3.3.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=8.0.0", | |
| "pytest-asyncio>=0.23.0", | |
| "httpx>=0.27.0", | |
| "ruff>=0.3.0", | |
| "pip-audit>=2.7.0", | |
| ] | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| [tool.ruff] | |
| target-version = "py311" | |
| line-length = 100 | |
| [tool.ruff.lint] | |
| select = ["E", "F", "I", "N", "W"] | |
| [tool.pytest.ini_options] | |
| asyncio_mode = "auto" | |
| testpaths = ["tests"] | |