-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (30 loc) · 1.19 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
[tool.poetry]
name = "streamlit-fesion"
version = "0.5.5"
description = ""
authors = ["Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/whitphx/streamlit-webrtc"
include = ["./streamlit_fesion/frontend/dist/**/*"]
exclude = ["streamlit_fesion/frontend/**/*", "!streamlit_fesion/frontend/dist/**/*"]
[tool.poetry.dependencies]
python = ">=3.7,<3.11,!=3.9.7" # 3.9.7 is excluded due to https://github.com/streamlit/streamlit/pull/5168
streamlit = "^1.0.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.2"
pytest = "^6.2.5"
mypy = "^0.910"
scikit-image = "^0.18.3"
click = ">=7.0,<8.0" # We must specify the click version because we install older versions of Streamlit in the CI process and their depending click version is different from the newer releases.
# It is necessary to specify numpy and pandas versions for Poetry to resolve the package versions correctly and avoid errors.
numpy = "^1.21.0"
pandas = [
{version = "1.1.5", python = ">=3.7,<3.8"},
{version = "^1.4.0", python = ">=3.8,<3.11"},
]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"