Skip to content

Commit 00c0b05

Browse files
committed
feat: small fixes
1 parent 00b3139 commit 00c0b05

3 files changed

Lines changed: 12 additions & 15 deletions

File tree

README.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
1-
# cutstitch
1+
# greet_anyone
22

3-
A tool to stitch images together using various cutout modes.
3+
A library and cli to greet anyone.
44

55
## Usage
66

77
### CLI
88

99
```
10-
usage: cutstitch [-h] [--mode {vertical,horizontal,diagonal,circle}] [--angle ANGLE] [--output OUTPUT] files [files ...]
10+
usage: cli.py [-h] [--exited EXITED] who
11+
12+
Greet anyone.
1113
1214
positional arguments:
13-
files Image files to stitch together (two or more, in order)
15+
who who to greet
1416
1517
options:
16-
-h, --help show this help message and exit
17-
--mode {vertical,horizontal,diagonal,circle}
18-
Cutout mode (default: vertical)
19-
--angle ANGLE Angle for diagonal mode
20-
--output OUTPUT Output file name
18+
-h, --help show this help message and exit
19+
--exited EXITED adds a exclamation point at the end
2120
```
2221

2322
#### Examples
2423
```sh
25-
greet_anyone image1.png image2.png --mode vertical --output result.png
24+
greet_anyone Traveler --exited true
2625
```
2726

2827
## Features
29-
- Stitch multiple images together
30-
- Multiple cutout modes
31-
- Simple CLI
28+
- Greet anyone

greet_anyone/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
def main():
77
parser = argparse.ArgumentParser(description="Greet anyone.")
8-
parser.add_argument("output", type=str, default="Traveler", help="who to greet")
8+
parser.add_argument("who", type=str, help="who to greet")
99
parser.add_argument("--exited", type=bool, default=False, help="adds a exclamation point at the end")
1010
args = parser.parse_args()
1111

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "greet_anyone"
7-
description = "A libary and cli to greet anyone."
7+
description = "A library and cli to greet anyone."
88
version = "0.0.0" # set by uv during release
99
readme = "README.md"
1010
requires-python = ">=3.12"

0 commit comments

Comments
 (0)