mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 17:26:26 +02:00
use uv instead of poetry (#663)
This commit is contained in:
parent
ca95ffb63d
commit
053e2b3a74
41 changed files with 3086 additions and 7226 deletions
|
|
@ -1,23 +1,31 @@
|
|||
[tool.poetry]
|
||||
name = "demo tests"
|
||||
[project]
|
||||
name = "demo-tests"
|
||||
version = "0.0.1"
|
||||
description = "demo tests runner"
|
||||
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.12"
|
||||
dependencies = [
|
||||
"pytest>=8.3.3",
|
||||
"requests>=2.29.0",
|
||||
"pytest-sugar>=1.0.0",
|
||||
"deepdiff>=8.0.1",
|
||||
"pytest-retry>=1.6.3",
|
||||
"pyyaml",
|
||||
]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.12"
|
||||
pytest = "^8.3.3"
|
||||
requests = "^2.29.0"
|
||||
pytest-sugar = "^1.0.0"
|
||||
deepdiff = "^8.0.1"
|
||||
pytest-retry = "^1.6.3"
|
||||
pyyaml = "*"
|
||||
[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"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue