-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathpyproject.toml
34 lines (28 loc) · 950 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py4web"
version = "1.20241204.1"
authors = [{ name="Massimo Di Pierro", email="[email protected]" },]
description = "A fast, stable, comprehensive web framework"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools]
packages = ["py4web", "py4web.server_adapters", "py4web.utils", "py4web.utils.auth_plugins"]
[tool.setuptools.package-data]
py4web = ["assets/*"]
[project.scripts]
py4web = "py4web.core:cli"
[project.urls]
"Homepage" = "https://github.com/web2py/py4web"
"Bug Tracker" = "https://github.com/web2py/py4web/issues"
"Documentation" = "https://py4web.com"