diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2025-01-28 17:53:57 -0500 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2025-01-28 17:53:57 -0500 |
commit | 671c17918c877e64aee7c730f32aac9ded9d5915 (patch) | |
tree | 5dd489a1da533123245d4f276e2ef11c87764047 /pyproject.toml | |
parent | b067c48e5db91796c96c982011421713b0187ae4 (diff) |
reduce args for generate_image by using a config class. update ignore to account for idea folder, re-org code to increase speed.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2b12a4f --- /dev/null +++ b/pyproject.toml | |||
@@ -0,0 +1,12 @@ | |||
1 | [project] | ||
2 | name = "Flux" | ||
3 | version = "0.0.1" | ||
4 | authors = [ | ||
5 | { name="Zach Berwaldt", email="zberwaldt@gmail.com" } | ||
6 | ] | ||
7 | description = "A simple CLI to generate images with flux locally." | ||
8 | readme = "README.md" | ||
9 | requires-python = ">=3.12" | ||
10 | |||
11 | [project.scripts] | ||
12 | flux = "run_flux:main" \ No newline at end of file | ||