Skip to content

Commit 0807445

Browse files
committed
fix
1 parent 29951bc commit 0807445

4 files changed

Lines changed: 20 additions & 8 deletions

File tree

config-utils/config_utils/__init__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff 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

1430
Run the tool directly without installation:
1531

@@ -143,9 +159,8 @@ pip install -e .
143159

144160
```
145161
config-utils/
162+
├── cli.py
146163
├── config_utils/
147-
│ ├── __init__.py
148-
│ └── cli.py
149164
├── pyproject.toml
150165
└── README.md
151166
```
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"]

0 commit comments

Comments
 (0)