-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.19 KB
/
pyproject.toml
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
45
46
47
48
[tool.poetry]
name = "turkanime-cli"
version = "8.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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
packages = [
{ include = "turkanime_api" }
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
selenium = ">=4.2.0"
yt_dlp = "*"
bs4 = ">=0.0.1"
pycryptodome = "*"
appdirs = "*"
questionary = "*"
py7zr = "*"
rich = ">=13.0.0"
easygui = ">=0.98.2"
requests = "*"
[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'