faster-app 0.0.9__py3-none-any.whl → 0.0.10__py3-none-any.whl

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/__init__.py CHANGED
@@ -9,7 +9,7 @@ Faster APP - 一个轻量级的 Python Web 框架
9
9
  - 数据库连接管理 (tortoise_init)
10
10
  """
11
11
 
12
- __version__ = "0.0.9"
12
+ __version__ = "0.0.10"
13
13
  __author__ = "peizhenfei"
14
14
  __email__ = "peizhenfei@hotmail.com"
15
15
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_app
3
- Version: 0.0.9
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>
@@ -1,7 +1,7 @@
1
- main.py,sha256=En5hYXB-wbcnEFmQ6mmMlwnO1y-SM5nFcLsMN9dZk4s,613
2
- faster_app/__init__.py,sha256=QwEa_aQ4zAaf02Mm7C1copWFseo1NCAUjftH9mzgvb4,1425
1
+ faster_app/__init__.py,sha256=ZvBK3Al85B5r_lmpYPpD-EE7syIo8hPndMdSurhCLqM,1426
3
2
  faster_app/base.py,sha256=8350gBg_GkW_ww_lDvIOODFOJ71_yowQ5gd_tMTPrQ8,4035
4
3
  faster_app/db.py,sha256=uG4k_eSy5C2MP7DF-senxI10sLAGrLkgmBRFfH_91kY,994
4
+ faster_app/main.py,sha256=En5hYXB-wbcnEFmQ6mmMlwnO1y-SM5nFcLsMN9dZk4s,613
5
5
  faster_app/commands/__init__.py,sha256=AgjI6NmKpdzNTH93XvXsvh54F7PiRX-MJq6emITw7K4,258
6
6
  faster_app/commands/base.py,sha256=c5wRPxIBEyJLgBTrFGGDUs4Xh4h9gMxFHlNOf6MgcMo,2544
7
7
  faster_app/commands/discover.py,sha256=7pWETGJmRi6KDj-LcBLbmusKIvPElGFU6T92WvdRTew,620
@@ -27,9 +27,9 @@ faster_app/templates/apps/demo/commands.py,sha256=KECFqPzxn46qpveRARoxyyYk_ZVZ-R
27
27
  faster_app/templates/apps/demo/models.py,sha256=RfodpzyDfhwbfxfRg_qMwTVFjV7n8uLfJTFsCaWUNHs,328
28
28
  faster_app/templates/apps/demo/routes.py,sha256=Ye1IsU-xDox33IETZQ4K2LLIWkeby9whzVmQqB9JaFY,270
29
29
  faster_app/templates/config/settings.py,sha256=2Q58pumllN5a09mem3bPy-z65Jy5NTTicN4KjGJ-sY8,182
30
- faster_app-0.0.9.dist-info/licenses/LICENSE,sha256=VlZLv92YNpRecXnQ92BsEhMZK0zX453xnBFta4eGPRE,1073
31
- faster_app-0.0.9.dist-info/METADATA,sha256=egkaOVupwdIXh3Zr3N_zhqRiyxkpfuopLGECOQLTawM,7382
32
- faster_app-0.0.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
33
- faster_app-0.0.9.dist-info/entry_points.txt,sha256=sWqd_BtqZPR1ET8qzd39omJRLh_cW7tHBNUTWSkI2JQ,41
34
- faster_app-0.0.9.dist-info/top_level.txt,sha256=j75Oo5nWjUaghO8XErOuYDFW9BfKvZub9b2fnjECvAg,16
35
- faster_app-0.0.9.dist-info/RECORD,,
30
+ faster_app-0.0.10.dist-info/licenses/LICENSE,sha256=VlZLv92YNpRecXnQ92BsEhMZK0zX453xnBFta4eGPRE,1073
31
+ faster_app-0.0.10.dist-info/METADATA,sha256=ImyK7hoY47ZjmWgGNZYknqxjxBiLullFj5Kr-tXKaGE,7383
32
+ faster_app-0.0.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
33
+ faster_app-0.0.10.dist-info/entry_points.txt,sha256=7PnCc_r0NYS1RU2OKbdod2sJBdUt8-JpmCCQSt0OLPs,52
34
+ faster_app-0.0.10.dist-info/top_level.txt,sha256=Ah5KB3gcZwXCVsxO8kQtaC0Y7Uy__QFm1p_RJGo5UIU,11
35
+ faster_app-0.0.10.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ faster-app = faster_app.main:main
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- faster-app = main:main
File without changes