MeenalSinha/cloud-finops-optimizer
0
1[build-system]2requires = ["setuptools>=68", "wheel"]3build-backend = "setuptools.backends.legacy:build"4 5[project]6name = "cloud-finops-env"7version = "1.0.0"8description = "OpenEnv environment for cloud infrastructure cost optimization"9readme = "README.md"10requires-python = ">=3.10"11license = { text = "MIT" }12authors = [13 { name = "Cloud FinOps Optimizer" }14]15keywords = ["openenv", "reinforcement-learning", "finops", "cloud", "rl"]16classifiers = [17 "Programming Language :: Python :: 3",18 "Programming Language :: Python :: 3.10",19 "Programming Language :: Python :: 3.11",20 "License :: OSI Approved :: MIT License",21 "Operating System :: OS Independent",22 "Topic :: Scientific/Engineering :: Artificial Intelligence",23]24dependencies = [25 "openenv-core>=0.1.0",26 "fastapi>=0.115.0",27 "uvicorn[standard]>=0.30.0",28 "pydantic>=2.9.0",29 "openai>=1.51.0",30 "requests>=2.32.0",31 "python-multipart>=0.0.12",32 "websockets>=12.0",33]34 35[project.scripts]36server = "server.app:main"37 38[project.optional-dependencies]39dev = [40 "pytest>=8.0",41 "httpx>=0.27",42]43 44[tool.setuptools.packages.find]45where = ["."]46include = ["server", "server.*"]47 