-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.57 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
[project]
name = "FletXr"
version = "0.1.4"
description = "The GetX-inspired Python Framework for Building Reactive, Cross-Platform Apps with Flet"
readme = "PYPI.md"
license = {file = "LICENSE"}
authors = [{ name = "AllDotPy", email = "hello@alldotpy.com" }]
maintainers = [{ name = "#Einswilli", email = "einswilligoeh@email.com" }]
requires-python = ">=3.10,<=3.13"
keywords = [
"fletx", "fletxr", "flet", "reactive state",
"routing", "di", "dependency injection"
]
dependencies = [
"aiohttp>=3.9.5",
"pydantic>=2.11.5",
"packaging>=21.0",
"flet==0.28.3",
"requests>=2.31.0", # For packaging
]
[project.scripts]
fletx = "fletx.__main__:main"
[project.urls]
Homepage = "https://github.com/AllDotPy/FletX"
Repository = "https://github.com/AllDotPy/FletX"
Documentation = "https://alldotpy.github.io/FletX"
Tracker = "https://github.com/AllDotPy/FletX/issues"
# Optional deps
[project.optional-dependencies]
dev = [
"flet-cli==0.28.3",
"flet-desktop==0.28.3",
"flet-web==0.28.3",
"pytest>=8.4.0",
]
# Dependency groups for FletX development
[dependency-groups]
dev = [
"flet-cli==0.28.3",
"flet-desktop==0.28.3",
"flet-web==0.28.3",
"black",
"mypy",
"twine",
"uv",
"build",
"pytest>=8.4.0",
"pytest-asyncio>=1.3.0",
"mkdocs>=1.6.1",
"setuptools>=80.8.0",
"mkdocs-material>=9.6.14",
"mkdocs-static-i18n>=1.3.0",
]
[tool.setuptools]
packages = ["fletx"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"