File tree Expand file tree Collapse file tree
config-utils/config_utils Expand file tree Collapse file tree Load diff This file was deleted.
Original file line number Diff line number Diff line change @@ -9,7 +9,23 @@ A CLI tool for capturing environment variables and Django settings in YAML forma
99
1010## Installation
1111
12- ### Using uvx (Recommended)
12+ ### Using uv tool install (Recommended)
13+
14+ Install the tool globally using ` uv ` :
15+
16+ ``` bash
17+ uv tool install .
18+ ```
19+
20+ Or install from a remote location:
21+
22+ ``` bash
23+ uv tool install config-utils
24+ ```
25+
26+ This will install the ` config-utils ` executable in your PATH.
27+
28+ ### Using uvx
1329
1430Run the tool directly without installation:
1531
@@ -143,9 +159,8 @@ pip install -e .
143159
144160```
145161config-utils/
162+ ├── cli.py
146163├── config_utils/
147- │ ├── __init__.py
148- │ └── cli.py
149164├── pyproject.toml
150165└── README.md
151166```
File renamed without changes.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ dependencies = [
1414]
1515
1616[project .scripts ]
17- config-utils = " config_utils. cli:main"
17+ config-utils = " cli:main"
1818
1919[tool .hatch .build .targets .wheel ]
20- packages = [" config_utils " ]
20+ only-include = [" cli.py " ]
You can’t perform that action at this time.
0 commit comments