forked from web2py/py4web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (25 loc) · 843 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
[project]
name = "py4web"
version = "1.20231115.1"
authors = [{ name="Massimo Di Pierro", email="massimo.dipierro@gmail.com" },]
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.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"