29 lines
585 B
TOML
29 lines
585 B
TOML
[project]
|
|
name = "miem-workers"
|
|
version = "0.7.0"
|
|
description = "MIEM employees parser, admin API, and MCP server"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"apscheduler>=3.10.4",
|
|
"beautifulsoup4>=4.12.3",
|
|
"fastapi>=0.115.0",
|
|
"httpx>=0.27.0",
|
|
"jinja2>=3.1.4",
|
|
"lxml>=5.2.0",
|
|
"psycopg[binary]>=3.2.0",
|
|
"pydantic-settings>=2.4.0",
|
|
"python-multipart>=0.0.9",
|
|
"requests>=2.32.0",
|
|
"sqlalchemy>=2.0.32",
|
|
"uvicorn[standard]>=0.30.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|