Skip to content

Commit 04a48d2

Browse files
committed
Dev : Beta Release updates
1 parent 9fac241 commit 04a48d2

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</a>
3131
</p>
3232

33-
# JsWeb: The Blazing-Fast ASGI Web Framework
33+
# JsWeb: The Blazing-Fast ASGI Lightweight Python Web Framework
3434

3535
**JsWeb** is a modern, high-performance Python web framework built from the ground up on the **ASGI** standard. It's designed for developers who want the speed of asynchronous programming with the simplicity of a classic framework.
3636

pyproject.toml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "jsweb"
7-
version = "1.1.0"
7+
version = "1.2.0b1"
88
description = "JsWeb - A lightweight and modern Python web framework designed for speed and simplicity."
99
readme = "README.md"
10-
requires-python = ">=3.6"
10+
requires-python = ">=3.8"
1111
license = {text = "MIT"}
1212
authors = [
1313
{ name = "Jones Peter", email = "[email protected]" }
1414
]
1515

1616
keywords = [
17-
"JsWeb", "Framework", "Web", "Python", "WSGI", "Web Server", "ORM",
18-
"Database", "Routing", "Authentication", "Forms", "CLI"
17+
"JsWeb", "Framework", "Web", "Python", "ASGI", "Web Server", "ORM",
18+
"Database", "Routing", "Authentication", "Forms", "CLI", "Admin"
1919
]
2020

2121
classifiers = [
22-
"Development Status :: 3 - Alpha",
22+
"Development Status :: 4 - Beta",
2323
"Intended Audience :: Developers",
2424
"License :: OSI Approved :: MIT License",
2525
"Operating System :: OS Independent",
2626
"Programming Language :: Python :: 3",
27-
"Programming Language :: Python :: 3.6",
28-
"Programming Language :: Python :: 3.7",
2927
"Programming Language :: Python :: 3.8",
3028
"Programming Language :: Python :: 3.9",
3129
"Programming Language :: Python :: 3.10",
32-
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
30+
"Programming Language :: Python :: 3.11",
31+
"Programming Language :: Python :: 3.12",
32+
"Topic :: Internet :: WWW/HTTP :: ASGI :: Application",
3333
"Topic :: Software Development :: Libraries :: Application Frameworks"
3434
]
3535

@@ -38,7 +38,8 @@ dependencies = [
3838
"sqlalchemy",
3939
"werkzeug",
4040
"itsdangerous",
41-
"alembic"
41+
"alembic",
42+
"markupsafe"
4243
]
4344

4445
[project.optional-dependencies]
@@ -64,6 +65,7 @@ jsweb = [
6465
"templates/admin/*",
6566
"static/*.css",
6667
"static/*.png",
68+
"static/*.js",
6769
"project_templates/*.jinja",
6870
"project_templates/alembic/*"
6971
]

0 commit comments

Comments
 (0)