-
Notifications
You must be signed in to change notification settings - Fork 58
/
pyproject.toml
76 lines (70 loc) · 1.46 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
[project]
name = "auto-news"
version = "0.1.0"
description = "AutoNews backend"
authors = [
{ name = "Yuzhang Hu", email = "[email protected]" }
]
dependencies = [
"SpeechRecognition",
"arxiv",
"bs4",
"chromadb>=0.4",
"docker",
"duckduckgo_search",
"fake_useragent",
"feedparser",
"httpcore>=1.0",
"httpx",
"langchain==0.3.1",
"langchain-community==0.3.1",
"langchain-google-genai",
"llama-index>=0.9",
"lz4",
"minio",
"miniopy-async",
"mysql-connector-python>=8.2.0",
"notion-client",
"openai",
"openai-whisper",
"pillow",
"pinecone-client",
"pyautogen==0.2.2",
"pymilvus>=2.4.*",
"pymupdf",
"python-dotenv",
"python-snappy",
"pyttsx3",
"pytube",
"pytz",
"redis",
"requests",
"retry",
"scales",
"scylla-driver",
"soundfile",
"tiktoken",
"transformers",
"tweepy",
"validators",
"youtube-transcript-api",
"yt-dlp",
]
readme = "README.md"
requires-python = ">= 3.9"
[project.scripts]
# hello = "airflow:hello"
[project.urls]
Homepage = "https://github.com/finaldie/auto-news"
Documentation = "https://github.com/finaldie/auto-news/wiki"
Repository = "https://github.com/finaldie/auto-news"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["./"]