-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
69 lines (65 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "aniworld"
version = "2.2.0"
authors = [
{ name="Phoenixthrush UwU", email="[email protected]" },
]
maintainers = [
{ name="Phoenixthrush UwU", email="[email protected]" }
]
description = "Cross-platform command-line tool to download and stream anime from aniworld.to"
keywords = ["anime", "aniworld", "anime-downloader", "aniworld-downloader",
"scraping", "mpv","syncplay", "yt-dlp", "voe", "streamtape", "vidoza"]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
'requests',
'bs4',
'npyscreen',
'colorlog',
'py7zr',
'packaging',
'yt-dlp',
'windows-curses; platform_system == "Windows"'
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Natural Language :: English",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
[project.optional-dependencies]
dev = [
"pylint",
"flake8",
"build",
"twine",
"playwright",
"ollama"
]
playwright = [
"playwright"
]
offline = [
"ollama"
]
[project.urls]
Homepage = "https://github.com/phoenixthrush/Aniworld-Downloader"
Documentation = "https://github.com/phoenixthrush/AniWorld-Downloader/blob/main/README.md"
Repository = "https://github.com/phoenixthrush/AniWorld-Downloader.git"
Issues = "https://github.com/phoenixthrush/Aniworld-Downloader/issues"
Changelog = "https://github.com/phoenixthrush/AniWorld-Downloader/commits"
"Download Link" = "https://github.com/phoenixthrush/AniWorld-Downloader/archive/refs/heads/main.zip"
[project.scripts]
aniworld = "aniworld.__main__:main"