pyproject
This commit is contained in:
parent
b80cd14af2
commit
bc37a36e43
2 changed files with 18 additions and 3 deletions
12
README.md
12
README.md
|
|
@ -1,6 +1,6 @@
|
|||
# monkeysucker
|
||||
|
||||
This tool converts [WriteMonkey 3](https://github.com/writemonkey/wm3/) sheet files into markdown files.
|
||||
This tool converts WriteMonkey 3 sheet files into markdown files.
|
||||
|
||||
## Where the database files live
|
||||
|
||||
|
|
@ -22,7 +22,13 @@ You can also open these folders from within WriteMonkey 3 via its command palett
|
|||
## Usage
|
||||
|
||||
```
|
||||
uv run --from git+https://codeberg.org/randogoth/monkeysucker ./monkeysucker.py path/to/datadir path/to/outputdir
|
||||
python3 monkeysucker.py path/to/datadir path/to/outputdir
|
||||
```
|
||||
|
||||
## Run with uvx
|
||||
|
||||
```
|
||||
uvx --from git+https://codeberg.org/randogoth/monkeysucker monkeysucker path/to/datadir path/to/outputdir
|
||||
```
|
||||
|
||||
## Output rules
|
||||
|
|
@ -36,4 +42,4 @@ uv run --from git+https://codeberg.org/randogoth/monkeysucker ./monkeysucker.py
|
|||
|
||||
## Notes
|
||||
|
||||
- The output directory is deleted and recreated on each run.
|
||||
- The output directory is deleted and recreated on each run.
|
||||
|
|
|
|||
9
pyproject.toml
Normal file
9
pyproject.toml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
[project]
|
||||
name = "monkeysucker"
|
||||
version = "0.1.0"
|
||||
description = "Convert WriteMonkey 3 sheet files into markdown files."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
||||
[project.scripts]
|
||||
monkeysucker = "monkeysucker:main"
|
||||
Loading…
Add table
Add a link
Reference in a new issue