Spaces:
Sleeping
Sleeping
File size: 491 Bytes
9a1ab03 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
[tool.poetry]
name = "chris_group_project"
version = "0.1.0"
description = "A collection and display of projects in Chris groups"
authors = ["Yanbo Fang <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11.9"
streamlit = "^1.2.0"
openai = "^1.35.3"
python-dotenv = "^0.19.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|