Skip to content

Commit 953a98f

Browse files
committed
Init web2py app
1 parent c2460b9 commit 953a98f

File tree

5 files changed

+88
-0
lines changed

5 files changed

+88
-0
lines changed

web2py-app/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# web2py-app
2+
3+

web2py-app/app/__init__.py

Whitespace-only changes.

web2py-app/app/config/__init__.py

Whitespace-only changes.

web2py-app/poetry.lock

Lines changed: 69 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web2py-app/pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tool.poetry]
2+
name = "web2py-app"
3+
version = "0.1.0"
4+
description = "Example app built on top of Web2Py"
5+
authors = ["Your Name <you@example.com>"]
6+
license = "MIT"
7+
readme = "README.md"
8+
9+
[tool.poetry.dependencies]
10+
python = "^3.12"
11+
globals = "^0.3.36"
12+
13+
14+
[build-system]
15+
requires = ["poetry-core"]
16+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)