-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.65 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "Podcast_generator"
# The version is managed by setuptools-scm and will be read from git tags
dynamic = ["version"]
description = "A simple desktop application to create multi-speaker audio podcasts from a text script using the Google Gemini API."
readme = "README.md"
requires-python = ">=3.10, <3.12"
license = { file = "LICENSE" }
authors = [{ name = "Laurent FRANCOISE", email = "laurent.f.tech@icloud.com" }]
dependencies = [
"numpy",
"google-genai",
"keyring",
"elevenlabs",
"requests",
"customtkinter",
"CTkMenuBarPlus",
"python-dotenv", # Added to resolve ModuleNotFoundError
"python-docx", # Required for transcript analysis DOCX generation
"Flask",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Framework :: Tkinter",
]
[project.optional-dependencies]
dev = [
"pyinstaller",
"pytest",
"pytest-flask",
"pytest-mock",
"pytest-cov"
]
demo = [
"whisperx"
]
[project.scripts]
podcast-generator = "gui:main"
[project.urls]
Homepage = "https://github.com/laurentftech/Podcast_generator"
[tool.setuptools]
py-modules = ["gui", "generate_podcast", "create_demo", "about_window", "api_keys_window", "settings_window", "config", "utils", "demo_window"]
[tool.setuptools_scm]
# This tool will automatically discover the version from git tags.
write_to = "_version.py"