Switch to uv package manager: add uv.lock support and update pyproject.toml"
Browse files- pyproject.toml +7 -0
pyproject.toml
CHANGED
|
@@ -28,5 +28,12 @@ alpha-factory = "alpha_factory.run:main"
|
|
| 28 |
[tool.setuptools.packages.find]
|
| 29 |
include = ["alpha_factory*"]
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
[tool.ruff]
|
| 32 |
line-length = 100
|
|
|
|
| 28 |
[tool.setuptools.packages.find]
|
| 29 |
include = ["alpha_factory*"]
|
| 30 |
|
| 31 |
+
[tool.uv]
|
| 32 |
+
dev-dependencies = [
|
| 33 |
+
"pytest>=8.0",
|
| 34 |
+
"pytest-asyncio>=0.23",
|
| 35 |
+
"ruff>=0.4",
|
| 36 |
+
]
|
| 37 |
+
|
| 38 |
[tool.ruff]
|
| 39 |
line-length = 100
|