File size: 591 Bytes
dc42cb3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "openenv-cloud-ops-env"
version = "1.0.0"
description = "CloudOps Optimizer - A real-world simulation of cloud infrastructure cost and performance optimization"
requires-python = ">=3.10"
dependencies = [
    "openenv-core[core]>=0.2.2",
    "fastapi>=0.115.0",
    "pydantic>=2.0.0",
    "uvicorn[standard]>=0.24.0",
    "requests>=2.31.0",
]

[project.scripts]
server = "cloud_ops_env.server.app:main"

[tool.setuptools.packages.find]
where = ["."]
include = ["cloud_ops_env*"]