devmate 1.0.0__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.
devmate/__init__.py ADDED
@@ -0,0 +1,6 @@
1
+ """
2
+ DevMate — 程序员终端瑞士军刀
3
+ """
4
+ __version__ = "1.0.0"
5
+ __app_name__ = "DevMate"
6
+ __description__ = "程序员终端瑞士军刀——替代 5 个独立工具,一个 CLI 搞定"
devmate/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ """python -m devmate 入口"""
2
+ from devmate.app.cli import main
3
+
4
+ if __name__ == "__main__":
5
+ main()
@@ -0,0 +1 @@
1
+ """Application layer — CLI / TUI / Web entry points"""