-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathpyproject.toml
86 lines (75 loc) · 1.77 KB
/
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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py4web"
authors = [{ name="Massimo Di Pierro", email="[email protected]" },]
description = "A fast, stable, comprehensive web framework"
readme = "README.rst"
requires-python = ">=3.9"
license = "BSD-3-Clause"
dynamic = ["version"]
dependencies = [
"wheel",
"ombott>=2.4",
"click",
"colorama",
"cryptography",
"portalocker",
"tornado",
"renoir >= 1.4.0",
"requests",
"threadsafevariable >= 20230507.1",
"pyjwt >= 2.0.1",
"pycryptodome",
"pluralize >= 20240515.1",
"rocket3 >= 20241225.1",
"yatl >= 20230507.3",
"pydal >= 20250228.1",
"watchgod >= 0.6",
]
[tool.setuptools.dynamic]
version = {attr = "py4web.__init__.__version__"}
[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"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"mechanize==0.4.6",
"python-memcached",
]
docs = [
"docutils",
"pystemmer>=2.2",
"sphinx",
"sphinx-tabs",
"sphinx_rtd_theme",
"rinohtype==0.5.4",
"sphinxcontrib-spelling",
]
manage = [
"twine",
]
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.poetry]
name = "your-project-name"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
py4web = "^1.20250330.1"
[tool.ruff.lint]
select = []
ignore = ["E711", "E712"]