use uv instead of poetry (#663)

This commit is contained in:
Adil Hafeez 2025-12-26 11:21:42 -08:00 committed by GitHub
parent ca95ffb63d
commit 053e2b3a74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
41 changed files with 3086 additions and 7226 deletions

View file

@ -1,25 +1,33 @@
[tool.poetry]
[project]
name = "e2e_tests"
version = "0.0.1"
description = "e2e tests for prompt and llm gateway"
authors = ["Katanemo Labs, Inc <info@katanemo.com>"]
license = "Apache 2.0"
authors = [{name = "Katanemo Labs, Inc", email = "info@katanemo.com"}]
license = {text = "Apache 2.0"}
readme = "README.md"
package-mode = false
requires-python = ">=3.10"
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",
"anthropic>=0.66.0",
"openai>=1.0.0",
]
[tool.poetry.dependencies]
python = "^3.10"
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"
anthropic = "^0.66.0"
openai = "^1.0.0"
[project.optional-dependencies]
dev = [
"pytest-cov>=4.1.0",
]
[tool.poetry.dev-dependencies]
pytest-cov = "^4.1.0"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.pytest.ini_options]
python_files = ["test*.py"]