-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 763 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 763 Bytes
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
[project]
name = "gen-ai-hackathon"
version = "0.1.0"
description = "A project for the Gen AI Hackathon"
authors = [{name = "Your Name", email = "you@example.com"}]
requires-python = ">=3.11"
dependencies = [
"flask==2.3.3",
"openai==1.104.2",
"python-dotenv==1.0.0",
"PyPDF2==3.0.1",
"python-docx==0.8.11",
"langchain==0.3.27",
"langchain-openai==0.3.33",
"streamlit==1.49.1",
"pandas==2.3.2",
"numpy==2.3.3",
"requests==2.31.0",
"beautifulsoup4==4.12.2",
"markdown==3.5.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["app.py", "config.py", "streamlit_app.py", "test_app.py"]