Krishna1107's picture
full devops
c8f3b98
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cloud-native-devops-env"
version = "1.0.0"
description = "OpenEnv environment for debugging cloud-native deployment pipelines — GitHub Actions workflows, Dockerfiles, and Kubernetes manifests."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Krishna"},
]
keywords = ["openenv", "cicd", "docker", "github-actions", "kubernetes", "debugging", "cloud-native"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"fastapi",
"uvicorn",
"pydantic",
"pydantic-settings",
"PyYAML",
"requests",
"httpx",
"aiofiles",
"openenv-core>=0.2.0",
]
[project.optional-dependencies]
dev = [
"pytest",
]
inference = [
"openai",
"huggingface_hub",
]
[project.scripts]
server = "server.app:main"
[project.urls]
Homepage = "https://huggingface.co/spaces/jester1177/cloud-native-devops-env"
Repository = "https://github.com/melohub-xbit/GitHubActions-Docker-OpenEnv"
[tool.setuptools.packages.find]
include = ["server*"]
[tool.setuptools.package-data]
server = ["static/*"]