File size: 1,285 Bytes
498f684
 
 
 
 
c8f3b98
498f684
c8f3b98
498f684
 
 
 
 
 
c8f3b98
498f684
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c8f3b98
498f684
 
 
 
 
 
 
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[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/*"]