mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-12 15:50:01 -08:00
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "fastanime"
|
|
version = "0.3.0"
|
|
description = "A fast and efficient GUI and CLI anime scrapper"
|
|
authors = ["Benex254 <benedictx855@gmail.com>"]
|
|
license = "UNLICENSE"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
yt-dlp = "^2024.5.27"
|
|
rich = "^13.7.1"
|
|
click = "^8.1.7"
|
|
inquirerpy = "^0.3.4"
|
|
platformdirs = "^4.2.2"
|
|
art = "^6.2"
|
|
python-dotenv = "^1.0.1"
|
|
thefuzz = "^0.22.1"
|
|
requests = "^2.32.3"
|
|
[tool.poetry.group.dev]
|
|
optional = true
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.4.2"
|
|
isort = "^5.13.2"
|
|
pytest = "^8.2.2"
|
|
ruff = "^0.4.10"
|
|
pre-commit = "^3.7.1"
|
|
autoflake = "^2.3.1"
|
|
bandit = "^1.7.9"
|
|
|
|
[tool.poetry.group.gui_deps]
|
|
optional = true
|
|
[tool.poetry.group.gui_deps.dependencies]
|
|
kivy = "^2.3.0"
|
|
|
|
kivymd = { url = "https://github.com/kivymd/KivyMD/archive/master.zip" }
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
fastanime = 'fastanime:FastAnime'
|
|
|
|
# FILE: .bandit
|
|
[tool.bandit]
|
|
#exclude = tests,path/to/file
|
|
#tests = B201,B301
|
|
skips = ["B311", "B603", "B607", "B404"]
|