forked from zauberzeug/nicegui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (49 loc) · 1.64 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
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "nicegui"
version = "0.1.0"
description = "Web User Interface with Buttons, Dialogs, Markdown, 3D Scences and Plots"
authors = ["Zauberzeug GmbH <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/zauberzeug/nicegui"
keywords = ["gui", "ui", "web", "interface", "live"]
[tool.poetry.dependencies]
python = "^3.7"
typing-extensions = ">=3.10.0"
markdown2 = "^2.4.7"
Pygments = "^2.9.0"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
matplotlib = [
{ version = "^3.5.0", markers = "python_version ~= '3.7'"},
{ version = "^3.6.0", markers = "python_version ~= '3.11.0'"},
]
fastapi = "^0.92"
fastapi-socketio = "^0.0.10"
vbuild = "^0.8.1"
watchfiles = "^0.18.1"
jinja2 = "^3.1.2"
python-multipart = "^0.0.6"
plotly = "^5.13.0"
orjson = {version = "^3.8.6", markers = "platform_machine != 'i386' and platform_machine != 'i686'"} # orjson does not support 32bit
pywebview = "^4.0.2"
importlib_metadata = { version = "^6.0.0", markers = "python_version ~= '3.7'" } # Python 3.7 has no importlib.metadata
[tool.poetry.group.dev.dependencies]
icecream = "^2.1.0"
autopep8 = "^1.5.7"
debugpy = "^1.3.0"
pytest-selenium = "^4.0.0"
pytest-asyncio = "^0.19.0"
pytest = "6.2.5"
itsdangerous = "^2.1.2" # required by SessionMiddleware (see https://fastapi.tiangolo.com/?h=itsdangerous#optional-dependencies)
isort = "^5.11.4"
docutils = "^0.19"
pandas = [
{ version = "^1.0.0", markers = "python_version == '3.7'" },
{ version = "^2.0.0", markers = "python_version >= '3.8'" },
]
[build-system]
requires = [
"setuptools>=30.3.0,<50",
"poetry-core>=1.0.0"
]
build-backend = "poetry.core.masonry.api"