-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
48 lines (41 loc) · 997 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "langflow-streamlit"
version = "0.1.8"
description = ""
authors = ["YAITEC <[email protected]>"]
maintainers = [
"João Pedro M. C. Hluchan <[email protected]>",
"João Oliveira <[email protected]>"
]
license = "MIT"
packages = [
{include = "langflow_streamlit"},
{include = "langflow-streamlit"}
]
include = [
"pyproject.toml",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
streamlit = "^1.35.0"
fastapi = "^0.111.0"
python-dotenv = "^1.0.1"
langflow = "^1.0.14"
typer = "^0.12.3"
httpx = "^0.27.0"
langchain-core = "0.2.30"
[tool.poetry.scripts]
langflow-streamlit = "langflow_streamlit.__main__:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["pydantic.mypy"]
follow_imports = "skip"
disable_error_code = ["type-var"]
namespace_packages = true
mypy_path = "langflow"
ignore_missing_imports = true