-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 929 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 929 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
[tool.poetry]
name = "fluidframe"
version = "0.1.0"
description = "FluidFrame is a powerful, pythonic web application framework that embraces the simplicity and capability of hypermedia concepts. It combines Python's elegance with HTMX's innovative approach to create dynamic, interactive web applications without the need for complex JavaScript."
authors = ["AswanthManoj <aswanthmanoj51@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
starlette = "^0.38.1"
uvicorn = {extras = ["standard"], version = "^0.30.5"}
requests = "^2.32.3"
beautifulsoup4 = "^4.12.3"
cython = "^3.0.11"
setuptools = "^72.1.0"
itsdangerous = "^2.2.0"
fastapi = "^0.115.0"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[build-system]
requires = ["poetry-core", "cython", "wheel", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fluidframe = "fluidframe.cli:main"