-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
36 lines (32 loc) · 919 Bytes
/
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
[tool.poetry]
name = "ex4nicegui"
version = "0.8.6"
description = "Extension library based on nicegui, providing data responsive,BI functionality modules"
authors = ["CrystalWindSnake <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/CrystalWindSnake/ex4nicegui"
keywords = ["nicegui", "ex4nicegui", "webui"]
[tool.poetry.dependencies]
python = "^3.8"
nicegui = "^2.0.0"
signe = "^0.4.22"
executing = "^2.0.1"
[tool.poetry.group.dev.dependencies]
nicegui = "*"
pytest = "^8.3.3"
pandas = [
{version = "^1.0.0", python = "~3.8"},
{version = "^2.0.0", python = ">=3.9,<3.13"}
]
numpy = [
{version = "^1.24.0", python = "~3.8"},
{version = "^1.26.0", python = ">=3.9,<3.13"}
]
pyecharts = "^2.0.5"
pytest-playwright = "^0.5.0"
playwright = "^1.43.0"
pytest-asyncio = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"