faster-app 0.0.9__tar.gz → 0.0.10__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.
- {faster_app-0.0.9 → faster_app-0.0.10}/PKG-INFO +1 -1
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/__init__.py +1 -1
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app.egg-info/PKG-INFO +1 -1
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app.egg-info/SOURCES.txt +1 -1
- faster_app-0.0.10/faster_app.egg-info/entry_points.txt +2 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app.egg-info/top_level.txt +0 -1
- {faster_app-0.0.9 → faster_app-0.0.10}/pyproject.toml +3 -6
- faster_app-0.0.9/faster_app.egg-info/entry_points.txt +0 -2
- {faster_app-0.0.9 → faster_app-0.0.10}/LICENSE +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/README.md +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/base.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/commands/__init__.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/commands/base.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/commands/builtins/__init__.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/commands/builtins/app.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/commands/builtins/db.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/commands/builtins/fastapi.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/commands/discover.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/db.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10/faster_app}/main.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/models/__init__.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/models/base.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/models/discover.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/routes/__init__.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/routes/base.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/routes/builtins/__init__.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/routes/builtins/defaults.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/routes/builtins/swagger.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/routes/discover.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/settings/__init__.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/settings/builtins/settings.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/settings/discover.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/statics/swagger-ui-bundle.min.js +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/statics/swagger-ui.min.css +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/templates/apps/demo/commands.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/templates/apps/demo/models.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/templates/apps/demo/routes.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app/templates/config/settings.py +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app.egg-info/dependency_links.txt +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/faster_app.egg-info/requires.txt +0 -0
- {faster_app-0.0.9 → faster_app-0.0.10}/setup.cfg +0 -0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "faster_app"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.10"
|
8
8
|
description = "一个轻量级的 Python Web 框架,提供自动发现、模型基类、命令行工具等功能"
|
9
9
|
readme = "README.md"
|
10
10
|
license = "MIT"
|
@@ -33,17 +33,14 @@ Repository = "https://github.com/mautops/faster_app.git"
|
|
33
33
|
|
34
34
|
[tool.setuptools.packages.find]
|
35
35
|
where = ["."]
|
36
|
-
include = ["faster_app*"
|
36
|
+
include = ["faster_app*"]
|
37
37
|
exclude = ["tests*", "docs*", "__pycache__*", "*.pyc", "*.pyo"]
|
38
38
|
|
39
|
-
[tool.setuptools]
|
40
|
-
py-modules = ["main"]
|
41
|
-
|
42
39
|
[tool.setuptools.package-data]
|
43
40
|
"faster_app" = ["statics/*"]
|
44
41
|
|
45
42
|
[project.scripts]
|
46
|
-
faster-app = "main:main"
|
43
|
+
faster-app = "faster_app.main:main"
|
47
44
|
|
48
45
|
[dependency-groups]
|
49
46
|
dev = ["build>=1.3.0", "twine>=6.2.0"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|