This repository was archived by the owner on Dec 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (89 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
97 lines (89 loc) · 2.1 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "flet-datatable2"
version = "0.2.0"
description = "An enhanced DataTable for Flet apps."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [{ name = "Flet contributors", email = "hello@flet.dev" }]
dependencies = [
"flet >=0.70.0.dev0",
]
[project.urls]
Homepage = "https://mydomain.dev"
Documentation = "https://flet-dev.github.io/flet-datatable2"
Repository = "https://github.com/flet-dev/flet-datatable2"
Issues = "https://github.com/flet-dev/flet-datatable2/issues"
[tool.setuptools.package-data]
"flutter.flet_datatable2" = ["**/*"]
[dependency-groups]
test = [
"pytest >=7.2.0",
]
lint = [
"ruff >=0.13.1",
]
dev = [
"pre-commit >=4.2.0",
{ include-group = 'lint' },
{ include-group = 'test' },
]
docs-coverage = [
"docstr-coverage >=2.3.2",
]
docs = [
"mkdocs >=1.6.1",
"mkdocs-material >=9.6.20",
"mkdocstrings-python >=1.18.2",
"mkdocstrings-python-xref >=1.16.4",
"mike >=2.1.3",
"markdown >=3.9",
"pymdown-extensions >=10.16.1",
"mkdocs-exclude >=1.0.2",
"mkdocs-glightbox >=0.5.1",
"mkdocs-open-in-new-tab >=1.0.8",
"mkdocs-section-index >=0.3.10",
"griffe-modernized-annotations >=1.0.8",
"griffe-warnings-deprecated >=1.1.0",
"pygments >=2.16",
"markdown-exec[ansi] >=1.11.0",
"pydocstyle >=6.3.0",
"linkcheckmd >=1.4.0",
"mkdocs-external-images",
{ include-group = 'docs-coverage' },
]
all = [
{ include-group = 'dev' },
{ include-group = 'docs' },
]
[tool.uv.sources]
mkdocs-external-images = { git = "https://github.com/flet-dev/mkdocs-external-images", tag = "v0.2.0" }
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
target-version = "py39"
fix = true
show-fixes = true
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I"
]
preview = true
pydocstyle = { convention = 'google' }
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"