Add initial project structure with .gitignore, pyproject.toml, and main application files

This commit is contained in:
2025-03-25 17:12:45 +00:00
commit d1ef966e65
4 changed files with 94 additions and 0 deletions

15
pyproject.toml Normal file
View File

@@ -0,0 +1,15 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "streamlit-chat-app"
version = "0.1.0"
dependencies = [
"streamlit",
"python-dotenv",
"openai"
]
[tool.hatch.build.targets.wheel]
packages = ["src"]