We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aadf6f5 commit 056b866Copy full SHA for 056b866
README.md
@@ -8,32 +8,34 @@
8
9
### Prerequisites
10
11
-- Python (3.12 or higher)
12
-- Poetry (1.8.3 or higher)
+- Python (3.13 or higher)
+- uv (0.8.2 or higher)
13
14
### Installation
15
16
```bash
17
-poetry install
+uv sync
18
```
19
20
### Run Agent
21
22
23
-poetry run python ./adf_core_python/launcher.py
+uv run python ./adf_core_python/launcher.py
24
25
# get help
26
-poetry run python ./adf_core_python/launcher.py -h
+uv run python ./adf_core_python/launcher.py -h
27
28
29
### Build
30
31
32
-poetry build
+uv build
33
34
35
### Pre Commit
36
37
38
-poetry run task precommit
+uv run ruff format .
39
+uv run ruff check .
40
+uv run mypy .
41
0 commit comments