2024-10-15 16:20:27 +00:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "streamlit_ui"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = ""
|
|
|
|
|
authors = ["Michael McGuinness <mmcguinness@aarete.com>"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
package-mode = false
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = "3.11.10"
|
|
|
|
|
anthropic = "0.36.0"
|
|
|
|
|
boto3 = "1.35.37"
|
|
|
|
|
botocore = "1.35.37"
|
|
|
|
|
chromadb = "0.5.12"
|
|
|
|
|
click = "8.1.7"
|
|
|
|
|
langchain = "0.3.3"
|
|
|
|
|
langchain-community = "0.3.2"
|
|
|
|
|
msal = "1.31.0"
|
|
|
|
|
numpy = "1.24.0"
|
|
|
|
|
pandas = "2.2.3"
|
|
|
|
|
pydantic = "2.9.2"
|
|
|
|
|
python-dateutil = "2.9.0.post0"
|
|
|
|
|
requests = "2.32.3"
|
|
|
|
|
snowflake = "0.13.0"
|
|
|
|
|
streamlit-extras = "0.4.7"
|
|
|
|
|
streamlit-pdf-viewer = "0.0.18"
|
|
|
|
|
torch = "2.4.1"
|
|
|
|
|
streamlit = "^1.39.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
|
black = "^24.10.0"
|
|
|
|
|
mypy = "^1.12.0"
|
|
|
|
|
|
2024-10-22 13:45:53 +00:00
|
|
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
|
pytest = "^8.3.3"
|
|
|
|
|
|
2024-10-15 16:20:27 +00:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 88
|
|
|
|
|
target-version = ['py311']
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
2024-10-22 13:45:53 +00:00
|
|
|
disable_error_code = ["import-untyped"]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = [
|
|
|
|
|
"tests"
|
|
|
|
|
]
|