-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 1.14 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
[tool.poetry]
name = "streamlit-desktop-app"
version = "0.0.0"
description = "Easily convert Streamlit apps into standalone desktop applications."
authors = ["ohtaman <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/ohtaman/streamlit-desktop-app"
repository = "https://github.com/ohtaman/streamlit-desktop-app"
documentation = "https://github.com/ohtaman/streamlit-desktop-app#readme"
keywords = ["streamlit", "desktop app", "pywebview", "pyinstaller"]
[tool.poetry.dependencies]
python = "^3.9,!=3.9.7,<3.14"
streamlit = ">=1.13.0"
pywebview = "^5.3.2"
requests = "^2.32.3"
pyinstaller = "^6.11.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
ruff = "^0.7.2"
types-pyinstaller = "^6.11.0.20241028"
types-requests = "^2.32.0.20241016"
pytest = "^8.3.3"
[tool.poetry.scripts]
streamlit-desktop-build = "streamlit_desktop_app.build:main"
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
write = true
write-file = "streamlit_desktop_app/_version.py"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"