File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,7 +60,11 @@ Fluxel is intentionally in MVP mode.
6060- ` duckdb ` for disposable analytical indexing
6161
6262## Install
63+ ``` bash
64+ uv pip install fluxel
65+ ```
6366
67+ ### Developer mode in repo
6468``` bash
6569uv sync
6670uv run fluxel --help
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ dependencies = [
3535]
3636
3737[project .urls ]
38- Repository = " https://github.com/londogard/strand "
39- Documentation = " https://github.com/londogard/strand #readme"
40- Issues = " https://github.com/londogard/strand /issues"
41- Changelog = " https://github.com/londogard/strand /blob/main/CHANGELOG.md"
38+ Repository = " https://github.com/londogard/fluxel "
39+ Documentation = " https://github.com/londogard/fluxel #readme"
40+ Issues = " https://github.com/londogard/fluxel /issues"
41+ Changelog = " https://github.com/londogard/fluxel /blob/main/CHANGELOG.md"
4242Funding = " https://github.com/sponsors/londogard"
4343
4444[project .scripts ]
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3+ from importlib import metadata
34import json
45import sys
56from dataclasses import asdict , dataclass
@@ -650,7 +651,7 @@ def build_parser() -> _CleanParser:
650651 parser .add_argument (
651652 "--version" ,
652653 action = "version" ,
653- version = "fluxel 0.1.0 " ,
654+ version = f "fluxel { metadata . version ( 'fluxel' ) } " ,
654655 help = "Show version and exit" ,
655656 )
656657 parser .add_arguments (FluxelCLI , dest = "cli" )
@@ -1398,7 +1399,6 @@ def run_cli(argv: list[str] | None = None) -> int:
13981399 print (cmd )
13991400 return 0
14001401
1401-
14021402 except HANDLED_CLI_ERRORS as error :
14031403 if isinstance (error , NotARepositoryError ):
14041404 print (f"fatal: { error } " , file = sys .stderr )
You can’t perform that action at this time.
0 commit comments