-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.86 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ytflashback"
version = "2.30.0"
authors = [
{name = "Akrm Al-Hakimi", email = "alhakimiakrmj@gmail.com"},
]
description = "A tool for searching YouTube videos by year, helping users find older content that might be buried by YouTube's algorithm"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Utilities",
]
keywords = ["youtube", "search", "video", "cli", "tui", "archive"]
dependencies = [
"google-api-python-client",
"python-dotenv",
"click",
"colorama",
"tabulate",
"textual",
"platformdirs",
]
[project.urls]
Homepage = "https://github.com/cachebag/flashback"
Repository = "https://github.com/cachebga/flashback.git"
Issues = "https://github.com/cachebag/flashback/issues"
[project.scripts]
ytflashback = "flashback.main:main"
ytflashback-cli = "flashback.main:main_cli"
ytflashback-api-key = "flashback.cli:update_api_key"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"flake8",
"mypy",
]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]
[tool.hatch.build.targets.wheel]
packages = ["src/flashback"]
[tool.hatch.version]
path = "src/flashback/__init__.py"