-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "turkanime-cli"
version = "9.2.2"
description = "Türkanime video oynatıcı ve indirici"
authors = ["Junicchi <junicchi@waifu.club>"]
readme = "README.md"
license = "CC-BY-NC-ND-4.0"
repository = "https://github.com/kebablord/turkanime-indirici"
keywords = ["turkanime","turk","anime","downloader"]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
packages = [
{ include = "turkanime_api" }
]
[tool.poetry.dependencies]
python = ">=3.10,<4"
yt-dlp = { version = ">=2025.10.22", extras = ["default", "curl-cffi"] }
curl-cffi = ">=0.13"
pycryptodome = "*"
appdirs = "*"
questionary = "*"
rich = ">=13.0.0"
easygui = ">=0.98.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# Publish sırasında yapılması gerekenler:
# turkanime_api/version.py dosyasındaki build, pip olarak değişmeli.
# poetry build; poetry install; poetry publish
turkanime = 'turkanime_api.cli.__main__:main'