-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (82 loc) · 2.37 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (82 loc) · 2.37 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "streamlit-bubble-chat"
version = "0.2.0"
description = "A floating chat bubble component for Streamlit apps"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Iago González" }]
keywords = ["streamlit", "chat", "widget", "component", "bubble", "ui"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: User Interfaces",
]
dependencies = ["streamlit>=1.53"]
[project.urls]
Homepage = "https://github.com/igonro/streamlit-bubble-chat"
Repository = "https://github.com/igonro/streamlit-bubble-chat"
Issues = "https://github.com/igonro/streamlit-bubble-chat/issues"
Changelog = "https://github.com/igonro/streamlit-bubble-chat/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"commitizen>=4.13.0,<5",
"prek>=0.3.8,<0.4",
"ruff>=0.11.0,<1",
]
test = [
"playwright>=1.54.0,<2",
"pytest>=8.3.0,<9",
"pytest-cov>=6.1.0,<7",
]
examples = [
"langchain>=0.3",
"langchain-openai>=0.3",
"langgraph>=0.4",
"pandas>=2.0",
"plotly>=6.0",
"python-dotenv>=1.0",
]
[build-system]
requires = ["uv_build>=0.11.6,<0.12"]
build-backend = "uv_build"
[tool.uv]
package = true
default-groups = ["dev", "test"]
[tool.uv.build-backend]
module-root = ""
[tool.ruff]
target-version = "py310"
line-length = 88
src = ["streamlit_bubble_chat", "examples", "tests"]
exclude = [".github/skills"]
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP"]
[tool.pytest.ini_options]
addopts = "-ra"
markers = [
"e2e: end-to-end tests that launch Streamlit and exercise the browser UI",
]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["streamlit_bubble_chat"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_provider = "uv"
update_changelog_on_bump = true
version_files = [
"streamlit_bubble_chat/pyproject.toml:version",
"streamlit_bubble_chat/frontend/package.json:version",
]
[[tool.streamlit.component.components]]
name = "bubble_chat"
asset_dir = "streamlit_bubble_chat/frontend/build"