-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
71 lines (65 loc) · 1.78 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
70
71
[project]
name = "gucken"
dynamic = ["version"]
description = "Gucken is a Terminal User Interface which allows you to browse and watch your favorite anime's with style."
authors = [{name="Commandcracker"}]
maintainers = [{name="Commandcracker"}]
license = {file = "LICENSE.txt"}
readme = "README.md"
dependencies = [
"textual==0.67.0", # 0.87.1
"beautifulsoup4>=4.12.3",
"httpx[http2]>=0.28.0",
"pypresence>=4.3.0",
"packaging>=24.2",
"platformdirs>=4.3.6",
"toml>=0.10.2",
"fuzzywuzzy>=0.18.0",
"async_lru>=2.0.4"
#"yt-dlp>=2024.11.18",
#"mpv>=1.0.7",
]
keywords = [
"gucken",
"anime",
"serien",
"series",
"tui"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Natural Language :: German",
"Programming Language :: Lua",
"Programming Language :: Python",
"Topic :: Games/Entertainment",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Android",
#"Operating System :: MacOS",
#"Operating System :: iOS",
]
[project.optional-dependencies]
speedups = [
"levenshtein>=0.26.1",
"orjson>=3.10.12"
]
socks = ["httpx[socks]>=0.28.0"]
[project.urls]
Repository = "https://github.com/Commandcracker/gucken"
[project.scripts]
gucken = "gucken.gucken:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["src/gucken/**", ]
[tool.hatch.version]
path = "src/gucken/__init__.py"