-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpyproject.toml
124 lines (114 loc) · 3.14 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[project]
name = "rio-ui"
description = "Build modern Websites and Apps just with Python"
dynamic = ["version"]
authors = [
{ name = "Jakob Pinterits", email = "[email protected]" },
{ name = "Paul Pinterits", email = "[email protected]" },
]
dependencies = [
"crawlerdetect>=0.1.7,<0.2",
"fastapi>=0.110,<0.111",
"gitignore-parser>=0.1.11,<0.2",
"imy[docstrings,deprecations]>=0.7,<0.8",
"introspection>=1.9.9,<2.0",
"isort>=5.13,<6.0",
"keyring>=24.3,<25.0",
"langcodes>=3.4,<4.0",
"narwhals>=1.12,<2.0",
"ordered-set>=4.1,<5.0",
"path-imports>=1.1.2,<2.0",
"pillow>=10.2,<11.0",
"pytz>=2024.1",
"revel>=0.9.1,<0.10",
"timer-dict>=1.0,<2.0",
"tomlkit>=0.12,<0.13",
"typing-extensions>=4.5,<5.0",
"unicall>=0.2,<0.3",
"uniserde>=0.4,<0.5",
"uvicorn[standard]>=0.29.0,<0.30",
"watchfiles>=0.21,<0.22",
"yarl>=1.9,<2.0",
"multipart>=1.2,<2.0",
"rapidfuzz>=3.12.2,<4.0",
]
requires-python = ">= 3.10"
readme = "README.md"
license.file = "LICENSE.txt"
keywords = [
"web-development",
"web-framework",
"framework",
"functional",
"type-safe",
"typing",
"typed",
"react",
"web",
"app",
"user-interface",
"web-app",
"local-app",
"modern",
"rio",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
window = [
"aiofiles>=24.1,<25.0",
"copykitten>=1.2,<2.0",
"platformdirs>=4.3,<5.0",
"pywebview[pyside6]>=5.3,<6.0",
]
[project.urls]
homepage = "https://rio.dev"
repository = "https://github.com/rio-labs/rio"
documentation = "https://rio.dev/docs"
[project.scripts]
rio = "rio.__main__:main"
[build-system]
requires = ["hatchling==1.26.3"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"alt-pytest-asyncio>=0.7.2,<0.8",
"coverage>=7.2,<8.0",
"matplotlib>=3.8,<4.0",
"pandas>=2.2,<3.0",
"playwright>=1.44,<1.45",
"plotly>=5.22,<6.0",
"polars>=0.20,<0.21",
"pre-commit>=3.1,<4.0",
"pytest>=8.2.1,<9.0",
"ruff>=0.9.9,<0.10",
"hatch>=1.11.1,<2.0",
"pyfakefs>=5.7.3,<6.0",
"pytest-cov>=5.0,<6.0",
"asyncio-atexit>=1.0.1,<2.0",
]
[tool.hatch.version]
path = "rio/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["rio"]
artifacts = ["rio/frontend files/*"]
[tool.hatch.build.targets.sdist]
artifacts = ["rio/frontend files/*"]
[tool.ruff]
line-length = 80
[tool.pytest.ini_options]
filterwarnings = ["ignore::rio.warnings.RioPotentialMistakeWarning"]