Initial build out

This commit is contained in:
emfurst 2026-03-30 07:15:14 -04:00
commit 29215e2bd2
40 changed files with 2622 additions and 0 deletions

34
pyproject.toml Normal file
View file

@ -0,0 +1,34 @@
[project]
name = "admin-analytics"
version = "0.1.0"
description = "University of Delaware administrative cost benchmarking"
requires-python = ">=3.11"
dependencies = [
"duckdb>=1.0",
"typer>=0.12",
"polars>=1.0",
"httpx>=0.27",
"openpyxl>=3.1",
"xlrd>=2.0",
"pyarrow>=17.0",
"lxml>=5.0",
]
[project.scripts]
admin-analytics = "admin_analytics.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/admin_analytics"]
[dependency-groups]
dev = [
"pytest>=8.0",
"respx>=0.21",
]
[tool.pytest.ini_options]
testpaths = ["tests"]