diff options
| author | Fuwn <[email protected]> | 2025-07-05 06:05:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-07-05 06:05:06 -0700 |
| commit | ecc92ea9c1fbe84f67b7c9ec02e10a330651155c (patch) | |
| tree | 13357b08744922afe021e516cd8be945233ce7bf /pyproject.toml | |
| parent | feat: Initial commit (diff) | |
| download | oguri-ecc92ea9c1fbe84f67b7c9ec02e10a330651155c.tar.xz oguri-ecc92ea9c1fbe84f67b7c9ec02e10a330651155c.zip | |
feat: Add simple schedule subcommand
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 13c5faa..22be74a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,14 @@ version = "0.1.0" description = "Command-line tool for AniList" authors = [{ name = "Fuwn", email = "[email protected]" }] dependencies = [ - "ariadne-codegen @ git+https://github.com/flonou/ariadne-codegen@field_names_should_not_be_converted_to_snake-case", - "asyncio>=3.4.3", + "ariadne-codegen @ git+https://github.com/flonou/ariadne-codegen@field_names_should_not_be_converted_to_snake-case", + "asyncio>=3.4.3", + "rich>=14.0.0", ] requires-python = ">= 3.13" [project.scripts] -"oguri" = "oguri:main_script" +"oguri" = "oguri.cli:main_script" [build-system] requires = ["hatchling"] |