File size: 431 Bytes
9f72def
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[project]
name = "gpu-capacity"
version = "0.1.0"
description = "Near real-time AWS GPU instance capacity checker (ODCR probe)"
requires-python = ">=3.11"
dependencies = [
    "boto3>=1.34",
    "fastapi>=0.110",
    "uvicorn>=0.29",
]

[project.scripts]
gpu-capacity = "gpu_capacity.main:run"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["gpu_capacity"]