codemate-cli 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.
codemate/__init__.py ADDED
@@ -0,0 +1,17 @@
1
+ """
2
+ CodeMate CLI - AI-powered coding assistant
3
+ """
4
+
5
+ __version__ = "1.0.0"
6
+ __author__ = "Your Name"
7
+ __email__ = "your.email@example.com"
8
+
9
+ from codemate.config import Config
10
+ from codemate.client import CodeMateClient, SyncCodeMateClient
11
+
12
+ __all__ = [
13
+ "Config",
14
+ "CodeMateClient",
15
+ "SyncCodeMateClient",
16
+ "__version__",
17
+ ]
codemate/__main__.py ADDED
@@ -0,0 +1,10 @@
1
+ """
2
+ Main entry point for the CodeMate CLI
3
+ Launches interactive shell by default when running: codemate-cli or python -m codemate
4
+ """
5
+
6
+ from codemate.cli import main
7
+
8
+ if __name__ == "__main__":
9
+ # Launch interactive mode by default
10
+ main()