diff options
| author | Colin Wilk <colin.wilk@tum.de> | 2023-10-01 18:08:45 +0200 |
|---|---|---|
| committer | Colin Wilk <colin.wilk@tum.de> | 2023-10-01 18:17:07 +0200 |
| commit | 4329cb0a3b8eec858762755a38c6a3e196876c0e (patch) | |
| tree | d7b5953fe3f4a58eef8fd7f1366057f047ad908a /pyproject.toml | |
| download | szuruboorupy-4329cb0a3b8eec858762755a38c6a3e196876c0e.tar.gz szuruboorupy-4329cb0a3b8eec858762755a38c6a3e196876c0e.zip | |
Initial Commit
Signed-off-by: Colin Wilk <colin.wilk@tum.de>
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..077a683 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "booru-sync" +version = "0.1.0" +description = "Python scripts and library for syncing content between Danbooru and Szurubooru" +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" + +[tool.poetry.group.dev.dependencies] +pytype = "^2023.9.27" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" |