-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
93 lines (82 loc) · 2.12 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "neuralnoise"
version = "1.5.0"
description = "An AI-powered podcast studio that uses multiple AI agents working together."
authors = [
{ name = "Leonardo Piñeyro", email = "[email protected]" }
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"ai", "podcast", "notebooklm", "autogen", "ai audio generation", "generative ai"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Speech"
]
requires-python = ">=3.10,<3.12"
dependencies = [
"ag2>=0.5.2",
"backoff>=2.2.1",
"beautifulsoup4>=4.12.3",
"crawl4ai>=0.3.3",
"elevenlabs>=1.10.0",
"langchain-community>=0.3.3",
"lxml>=5.3.0",
"openai>=1.52.2",
"pydantic>=2.9.2",
"pydub>=0.25.1",
"pymupdf>=1.24.12",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
"tabulate>=0.9.0",
"tqdm>=4.66.5",
"typer>=0.12.5",
"youtube-transcript-api>=0.6.2",
]
[project.scripts]
nn = "neuralnoise.cli:app"
[project.optional-dependencies]
local = [
"docker>=7.1.0",
"ollama>=0.4.4",
]
streamlit = [
"streamlit>=1.39.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/neuralnoise"]
[tool.hatch.build.targets.sdist]
include = [
"src/neuralnoise/**/*.py",
"src/neuralnoise/prompts/**/*.xml",
"LICENSE",
"README.md",
]
[tool.uv]
dev-dependencies = [
"ipdb>=0.13.13",
"ipykernel>=6.29.5",
"ipython>=8.28.0",
"mypy>=1.13.0",
"pytest>=8.3.3",
"ruff>=0.7.0",
"types-tabulate>=0.9.0.20240106",
]
[tool.mypy]
ignore_missing_imports = true