-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "va-claims-mcp-server"
version = "0.1.0"
description = "MCP server for VA.gov Benefits Claims API"
requires-python = ">=3.11"
dependencies = [
"fastmcp",
"httpx>=0.27.0",
"python-dotenv",
"uvicorn>=0.32.0",
]
[dependency-groups]
dev = [
"ruff>=0.8.0",
"taskipy>=1.14.0"
]
test = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[tool.taskipy.tasks]
dev = "uvicorn src.va_claims.server:app --host 0.0.0.0 --port 8000 --reload"
serve = "uvicorn src.va_claims.server:app --host 0.0.0.0 --port 8000"
lint = "ruff check ."
format = "ruff format ."
test = "pytest"
build = "uv build"
requirements = "uv export --no-hashes --no-dev -o requirements.txt"