-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 837 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
[project]
name = "app"
version = "0.1.0"
description = "A simple FastAPI app simulating FAFSA application evaluation."
authors = [
{ name = "Emmanuel I. Obi", email = "withtwoemms@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi==0.121.1",
"fastapi[standard]==0.121.1",
"uvicorn==0.38.0",
"pydantic==2.12.4",
"httpx==0.28.1",
"pyyaml>=6.0.3",
]
[project.optional-dependencies]
test = [
"pytest>=8.4.2",
"pytest-asyncio>=0.25.0",
"testcontainers>=4.13.2",
]
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.uv]
python-preference = "managed"
cache-dir = ".uv_cache"
concurrent-downloads = 5
concurrent-installs = 5
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["app"]