-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (68 loc) · 2.32 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
72
73
74
75
76
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mmdiary"
version = "0.4.0"
description = "Multimedia Diary Tools"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["audio", "video", "multimedia", "tool", "youtube", "notion", "transcriber", "uploader"]
authors = [
{ name = "Alexander Bushnev", email = "[email protected]" }
]
maintainers = [
{ name = "Alexander Bushnev", email = "[email protected]" }
]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
]
dependencies = [
"pytest",
"notion_client",
"notion",
"progressbar2",
"python-telegram-bot",
"openai-whisper",
"photo_importer",
"mixvideoconcat",
"dailymotion",
"free-proxy",
"google-auth-oauthlib",
"google-api-python-client",
]
[project.urls]
"Homepage" = "https://github.com/sashacmc/mmdiary"
"Bug Reports" = "https://github.com/sashacmc/mmdiary/issues"
"Source" = "https://github.com/sashacmc/mmdiary/"
"Changelog" = "https://github.com/sashacmc/mmdiary/blob/master/CHANGELOG.md"
[project.scripts]
mmdiary-notion-upload = "mmdiary.notion.uploader:main"
mmdiary-notion-cleanup = "mmdiary.notion.cleanup:main"
mmdiary-notion-cache = "mmdiary.notion.cache:main"
mmdiary-telegrambot = "mmdiary.telegrambot.telegrambot_service:main"
mmdiary-transcriber-run = "mmdiary.transcriber.transcriber:main"
mmdiary-transcriber-verify = "mmdiary.transcriber.verifier:main"
mmdiary-transcriber-search = "mmdiary.transcriber.searcher:main"
mmdiary-video-concat = "mmdiary.video.processor:main"
mmdiary-video-upload-youtube = "mmdiary.video.uploader.youtube:main"
mmdiary-video-upload-dailymotion= "mmdiary.video.uploader.dailymotion:main"
mmdiary-utils-datelib = "mmdiary.utils.datelib:main"
mmdiary = "mmdiary:main"