faster-app 0.0.8__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.
Files changed (41) hide show
  1. {faster_app-0.0.8 → faster_app-0.0.10}/PKG-INFO +2 -2
  2. {faster_app-0.0.8 → faster_app-0.0.10}/README.md +1 -1
  3. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/__init__.py +1 -1
  4. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/settings/builtins/settings.py +1 -1
  5. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/statics/swagger-ui-bundle.min.js +1 -1
  6. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/templates/config/settings.py +1 -1
  7. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app.egg-info/PKG-INFO +2 -2
  8. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app.egg-info/SOURCES.txt +1 -1
  9. faster_app-0.0.10/faster_app.egg-info/entry_points.txt +2 -0
  10. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app.egg-info/top_level.txt +0 -1
  11. {faster_app-0.0.8 → faster_app-0.0.10}/pyproject.toml +2 -5
  12. faster_app-0.0.8/faster_app.egg-info/entry_points.txt +0 -2
  13. {faster_app-0.0.8 → faster_app-0.0.10}/LICENSE +0 -0
  14. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/base.py +0 -0
  15. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/commands/__init__.py +0 -0
  16. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/commands/base.py +0 -0
  17. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/commands/builtins/__init__.py +0 -0
  18. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/commands/builtins/app.py +0 -0
  19. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/commands/builtins/db.py +0 -0
  20. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/commands/builtins/fastapi.py +0 -0
  21. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/commands/discover.py +0 -0
  22. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/db.py +0 -0
  23. {faster_app-0.0.8 → faster_app-0.0.10/faster_app}/main.py +0 -0
  24. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/models/__init__.py +0 -0
  25. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/models/base.py +0 -0
  26. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/models/discover.py +0 -0
  27. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/routes/__init__.py +0 -0
  28. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/routes/base.py +0 -0
  29. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/routes/builtins/__init__.py +0 -0
  30. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/routes/builtins/defaults.py +0 -0
  31. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/routes/builtins/swagger.py +0 -0
  32. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/routes/discover.py +0 -0
  33. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/settings/__init__.py +0 -0
  34. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/settings/discover.py +0 -0
  35. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/statics/swagger-ui.min.css +0 -0
  36. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/templates/apps/demo/commands.py +0 -0
  37. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/templates/apps/demo/models.py +0 -0
  38. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app/templates/apps/demo/routes.py +0 -0
  39. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app.egg-info/dependency_links.txt +0 -0
  40. {faster_app-0.0.8 → faster_app-0.0.10}/faster_app.egg-info/requires.txt +0 -0
  41. {faster_app-0.0.8 → faster_app-0.0.10}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_app
3
- Version: 0.0.8
3
+ Version: 0.0.10
4
4
  Summary: 一个轻量级的 Python Web 框架,提供自动发现、模型基类、命令行工具等功能
5
5
  Author-email: peizhenfei <peizhenfei@hotmail.com>
6
6
  Maintainer-email: peizhenfei <peizhenfei@hotmail.com>
@@ -201,7 +201,7 @@ class Settings(BaseSettings):
201
201
  DEBUG: bool = True
202
202
 
203
203
  # 服务器配置
204
- HOST: str = "127.0.0.8"
204
+ HOST: str = "127.0.0.1"
205
205
  PORT: int = 8000
206
206
 
207
207
  # API 配置
@@ -176,7 +176,7 @@ class Settings(BaseSettings):
176
176
  DEBUG: bool = True
177
177
 
178
178
  # 服务器配置
179
- HOST: str = "127.0.0.8"
179
+ HOST: str = "127.0.0.1"
180
180
  PORT: int = 8000
181
181
 
182
182
  # API 配置
@@ -9,7 +9,7 @@ Faster APP - 一个轻量级的 Python Web 框架
9
9
  - 数据库连接管理 (tortoise_init)
10
10
  """
11
11
 
12
- __version__ = "0.0.8"
12
+ __version__ = "0.0.10"
13
13
  __author__ = "peizhenfei"
14
14
  __email__ = "peizhenfei@hotmail.com"
15
15
 
@@ -11,7 +11,7 @@ class DefaultSettings(BaseSettings):
11
11
 
12
12
  # 基础配置
13
13
  PROJECT_NAME: str = "Faster APP"
14
- VERSION: str = "0.0.8"
14
+ VERSION: str = "0.0.1"
15
15
  DEBUG: bool = True
16
16
 
17
17
  # Server 配置
@@ -31826,7 +31826,7 @@ ${u.current.stack}
31826
31826
  return !(
31827
31827
  !e ||
31828
31828
  0 <= r()(e).call(e, "localhost") ||
31829
- 0 <= r()(e).call(e, "127.0.0.8") ||
31829
+ 0 <= r()(e).call(e, "127.0.0.1") ||
31830
31830
  "none" === e
31831
31831
  );
31832
31832
  },
@@ -5,5 +5,5 @@ class Settings(BaseSettings):
5
5
  """Settings"""
6
6
 
7
7
  PROJECT_NAME: str = "Faster APP"
8
- VERSION: str = "0.0.8"
8
+ VERSION: str = "0.0.1"
9
9
  DEBUG: bool = True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_app
3
- Version: 0.0.8
3
+ Version: 0.0.10
4
4
  Summary: 一个轻量级的 Python Web 框架,提供自动发现、模型基类、命令行工具等功能
5
5
  Author-email: peizhenfei <peizhenfei@hotmail.com>
6
6
  Maintainer-email: peizhenfei <peizhenfei@hotmail.com>
@@ -201,7 +201,7 @@ class Settings(BaseSettings):
201
201
  DEBUG: bool = True
202
202
 
203
203
  # 服务器配置
204
- HOST: str = "127.0.0.8"
204
+ HOST: str = "127.0.0.1"
205
205
  PORT: int = 8000
206
206
 
207
207
  # API 配置
@@ -1,10 +1,10 @@
1
1
  LICENSE
2
2
  README.md
3
- main.py
4
3
  pyproject.toml
5
4
  faster_app/__init__.py
6
5
  faster_app/base.py
7
6
  faster_app/db.py
7
+ faster_app/main.py
8
8
  faster_app.egg-info/PKG-INFO
9
9
  faster_app.egg-info/SOURCES.txt
10
10
  faster_app.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ faster-app = faster_app.main:main
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "faster_app"
7
- version = "0.0.8"
7
+ version = "0.0.10"
8
8
  description = "一个轻量级的 Python Web 框架,提供自动发现、模型基类、命令行工具等功能"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -36,14 +36,11 @@ where = ["."]
36
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"]
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- faster-app = main:main
File without changes
File without changes
File without changes