-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 805 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
29
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "func-to-web"
version = "1.0.1"
authors = [
{name = "Beltrán Offerrall"}
]
description = "Transform any Python function into a web interface automatically"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pytypeinput",
"pytypeinputweb",
"fastapi",
"uvicorn",
"jinja2",
"python-multipart",
"itsdangerous",
"aiofiles",
"starlette<1.0.0",
]
[project.urls]
Homepage = "https://github.com/offerrall/FuncToWeb"
Repository = "https://github.com/offerrall/FuncToWeb"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
func_to_web = [
"templates/*.html",
"internal_static/**/*.css",
"internal_static/**/*.js"
]