-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.07 KB
/
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
[project]
name = "streamlit-server-state"
description = ""
authors = [
{name = "Yuichiro Tachibana (Tsuchiya)", email = "[email protected]"},
]
license = {text = "MIT License"}
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"streamlit>=0.65.0",
"packaging>=20.0",
]
[project.urls]
Homepage = "https://github.com/whitphx/streamlit-server-state"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.uv]
dev-dependencies = [
"mypy[faster-cache]>=1.15.0",
"pytest>=8.3.3",
"ruff>=0.9.10",
# For testing older versions of Streamlit: https://discuss.streamlit.io/t/modulenotfounderror-no-module-named-altair-vegalite-v4/42921
"altair<5",
# For testing older versions of Streamlit: https://discuss.streamlit.io/t/streamlit-run-with-protobuf-error/25632/3
"protobuf<=3.20",
# For testing older versions of Streamlit
"setuptools>=75.2.0",
"bump-my-version>=0.28.0",
"pre-commit>=4.2.0",
]
[tool.ruff.lint]
extend-select = ["I"]