2025-12-26 11:21:42 -08:00
|
|
|
[project]
|
Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 20:15:37 -08:00
|
|
|
name = "plano_mock_tests"
|
2024-10-28 20:05:06 -04:00
|
|
|
version = "0.0.1"
|
Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 20:15:37 -08:00
|
|
|
description = "plano mock tests"
|
2025-12-26 11:21:42 -08:00
|
|
|
authors = [{name = "Katanemo Labs, Inc", email = "info@katanemo.com"}]
|
|
|
|
|
license = {text = "Apache 2.0"}
|
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"pytest>=8.3.3",
|
|
|
|
|
"requests>=2.29.0",
|
|
|
|
|
"selenium>=4.11.2",
|
|
|
|
|
"pytest-sugar>=1.0.0",
|
|
|
|
|
"deepdiff>=8.0.1",
|
|
|
|
|
"pytest-retry>=1.6.3",
|
|
|
|
|
"pytest-httpserver>=1.1.0",
|
|
|
|
|
]
|
2024-10-28 20:05:06 -04:00
|
|
|
|
2025-12-26 11:21:42 -08:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest-cov>=4.1.0",
|
|
|
|
|
]
|
2024-10-28 20:05:06 -04:00
|
|
|
|
2025-12-26 11:21:42 -08:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["."]
|
2024-10-28 20:05:06 -04:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
python_files = ["test*.py"]
|
|
|
|
|
addopts = ["-v", "-s"]
|
2024-10-30 17:54:51 -07:00
|
|
|
retry_delay = 0.5
|
|
|
|
|
cumulative_timing = false
|