-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.39 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
[project]
name = "blogging-assistant"
version = "0.1.0"
description = "A Smart Personal-Use Blogging/Writing Tool with Plagairism Detection."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT License" }
authors = [
{name = "AnnMargaret Tutu", email = "annmargaret.mailforce@gmail.com"},
]
classifiers = []
dependencies = [
"psutil>=5.9.0",
"requests>=2.28.0",
"beautifulsoup4>=4.11.0",
"arxiv>=2.1.0",
"PyPDF2>=3.0.0",
"pydantic",
"jinaai",
"python-dotenv",
"tavily-python",
"langgraph",
"diskcache>=5.6.0",
"streamlit>=1.28.0",
"langchain-community",
"langchain-groq",
"transformers>=4.57.1",
"plotly>=5.18.0",
"streamlit-jodit>=3.1.0",
"markdown>=3.9",
"markdownify>=1.2.0",
"streamlit-shadcn-ui>=0.1.19",
"vllm>=0.4.0",
"einops",
"addict",
"easydict",
# "flash-attn>=2.5.0", Using >= to allow compatible versions
"Pillow",
"mlx>=0.10.0",
"mlx-lm>=0.10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.0.0",
]
apple-silicon = [
"mlx>=0.10.0",
"mlx-lm>=0.10.0",
]
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.5",
]
editor = [
"streamlit-jodit>=0.1.0",
"markdown>=3.4.0",
"markdownify>=0.11.0",
]
[tool.uv]
extra-build-dependencies = {"flash-attn" = ["torch"]}
[project.scripts]
streamlit = "app:main"