astris-python 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {astris_python-0.1.1 → astris_python-0.1.2}/PKG-INFO +2 -2
- {astris_python-0.1.1 → astris_python-0.1.2}/pyproject.toml +2 -2
- {astris_python-0.1.1 → astris_python-0.1.2}/pyproject.toml.orig +2 -2
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/__init__.py +1 -1
- astris_python-0.1.2/src/astris/auth/installer.py +1281 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/cli.py +20 -11
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/database/__init__.py +4 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/inertia/response.py +5 -3
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/installer.py +57 -24
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/kernel.py +66 -1
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/routing/__init__.py +2 -0
- astris_python-0.1.2/src/astris/routing/router.py +57 -0
- astris_python-0.1.1/src/astris/auth/installer.py +0 -512
- astris_python-0.1.1/src/astris/routing/router.py +0 -38
- {astris_python-0.1.1 → astris_python-0.1.2}/LICENSE +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/README.md +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/.agents/skills/astris/SKILL.md +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/assets/favicon.ico +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/auth/__init__.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/auth/session.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/config.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/database/migrations.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/database/session.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/http/__init__.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/http/static.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/inertia/__init__.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/inertia/exceptions.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/inertia/shared.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/inertia/vite.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/py.typed +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/security/__init__.py +0 -0
- {astris_python-0.1.1 → astris_python-0.1.2}/src/astris/security/csrf.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: astris-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: The modern full-stack web framework for Python. Everything you need to go from idea to orbit; for developers who want to build and ship at escape velocity.
|
|
5
5
|
Author: Felix Gomez
|
|
6
6
|
Author-email: Felix Gomez <felix@felixgomez.com>
|
|
@@ -32,7 +32,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
32
32
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
33
33
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
34
34
|
Classifier: Typing :: Typed
|
|
35
|
-
Requires-Dist: alembic>=1.
|
|
35
|
+
Requires-Dist: alembic>=1.20.0
|
|
36
36
|
Requires-Dist: fastapi>=0.141.1
|
|
37
37
|
Requires-Dist: itsdangerous>=2.2.0
|
|
38
38
|
Requires-Dist: pwdlib[argon2]>=0.3.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "astris-python"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = "The modern full-stack web framework for Python. Everything you need to go from idea to orbit; for developers who want to build and ship at escape velocity."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -35,7 +35,7 @@ classifiers = [
|
|
|
35
35
|
"Typing :: Typed",
|
|
36
36
|
]
|
|
37
37
|
dependencies = [
|
|
38
|
-
"alembic>=1.
|
|
38
|
+
"alembic>=1.20.0",
|
|
39
39
|
"fastapi>=0.141.1",
|
|
40
40
|
"itsdangerous>=2.2.0",
|
|
41
41
|
"pwdlib[argon2]>=0.3.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "astris-python"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = "The modern full-stack web framework for Python. Everything you need to go from idea to orbit; for developers who want to build and ship at escape velocity."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -38,7 +38,7 @@ classifiers = [
|
|
|
38
38
|
"Typing :: Typed",
|
|
39
39
|
]
|
|
40
40
|
dependencies = [
|
|
41
|
-
"alembic>=1.
|
|
41
|
+
"alembic>=1.20.0",
|
|
42
42
|
"fastapi>=0.141.1",
|
|
43
43
|
"itsdangerous>=2.2.0",
|
|
44
44
|
"pwdlib[argon2]>=0.3.1",
|