-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 1.73 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fluidkit"
version = "1.5.0"
description = "Web development for the Pythonist"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "Aswanth Manoj", email = "aswanthmanoj51@gmail.com"},
]
keywords = ["fastapi", "typescript", "code-generation", "hmr", "hot module replacement", "full-stack", "type-safety", "sveltekit"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fastapi>=0.129.0",
"jurigged>=0.6.1",
"nodejs-wheel>=24.13.1",
"pyjwt>=2.12.1",
"python-multipart>=0.0.22",
"typer>=0.16.0",
"uvicorn>=0.41.0",
"websockets>=16.0",
]
[project.scripts]
fluidkit = "fluidkit.cli.main:app"
[project.urls]
Homepage = "https://fluidkit.github.io"
Documentation = "https://fluidkit.github.io/docs"
Repository = "https://github.com/AswanthManoj/Fluidkit"
Issues = "https://github.com/AswanthManoj/Fluidkit/issues"
[tool.setuptools.packages.find]
include = ["fluidkit*"]
[tool.setuptools.package-data]
fluidkit = ["runtime/*.ts", "runtime/*.svelte", "runtime/.gitignore.template", "runtime/templates/*", "icon.svg","explorer/static/**/*"]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501", "UP046", "UP047"]
[tool.ruff.format]
quote-style = "double"
[dependency-groups]
dev = [
"ruff>=0.15.5",
"httpx>=0.28.0",
]