-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 999 Bytes
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 999 Bytes
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
[project]
name = "nicegui-tabulator"
version = "0.3.1"
description = "This is a Python package that provides a simple way to create tables using the Tabulator library. It is built on top of the NiceGUI library."
keywords = ["ui", "gui", "web", "NiceGUI", "table", "Tabulator"]
license = "MIT"
readme = "README.md"
authors = [
{ name = "CrystalWindSnake", email = "568166495@qq.com" }
]
requires-python = ">=3.9"
dependencies = [
"nicegui~=3.5",
]
[dependency-groups]
dev = [
{include-group = "test"},
{include-group = "playwright"},
{include-group = "lint"},
]
test = [
"pytest>=8.3.5",
"pandas",
"numpy",
]
playwright = [
"playwright==1.57.0",
"pytest-playwright>=0.7.1",
]
git = [
"pre-commit>=3.5.0",
]
lint = [
"ruff==0.12.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["nicegui_tabulator"]
[tool.hatch.build.targets.sdist]
only-include = ["nicegui_tabulator"]