diff options
| author | Colin Wilk <colin.wilk@tum.de> | 2023-10-09 11:52:05 +0200 |
|---|---|---|
| committer | Colin Wilk <colin.wilk@tum.de> | 2023-10-09 12:08:43 +0200 |
| commit | c61d6fc80d7c20f580ad111db59352b8eae7b7da (patch) | |
| tree | 752979c86371d311b0d82043c8376eb56c3ed1ee /pyproject.toml | |
| parent | 1da7f1638babdfe4173d0e87ff3b45b32e0c9123 (diff) | |
| download | szuruboorupy-c61d6fc80d7c20f580ad111db59352b8eae7b7da.tar.gz szuruboorupy-c61d6fc80d7c20f580ad111db59352b8eae7b7da.zip | |
Rename booru-sync to szuruboorupy
Initially the project was intended as a script repository containing
scripts for managing my szurubooru instance. Since most of my work was
actually writing an API client, I decided to rename this repository to
an API client and do the script repository later on separately.
Signed-off-by: Colin Wilk <colin.wilk@tum.de>
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/pyproject.toml b/pyproject.toml index 8af13f3..06aa9db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,20 +1,18 @@ [tool.poetry] -name = "booru-sync" +name = "szuruboorupy" version = "0.1.0" -description = "Python scripts and library for syncing content between Danbooru and Szurubooru" +description = "An API client written in Python for szurubooru based sites" authors = ["Colin Wilk <colin.wilk@tum.de>"] readme = "README.md" [tool.poetry.dependencies] python = "^3.10" -pybooru = "^4.2.2" -alive-progress = "^3.1.4" -colorama = "^0.4.6" -python-dotenv = "^1.0.0" pydantic = "^2.4.2" +requests = "^2.31.0" [tool.poetry.group.dev.dependencies] pytype = "^2023.9.27" +mypy = "^1.5.1" pydocstyle = "^6.3.0" [build-system] |