code-aide 1.0.0__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 (34) hide show
  1. code_aide-1.0.0/.github/workflows/ci.yml +13 -0
  2. code_aide-1.0.0/.github/workflows/publish.yml +15 -0
  3. code_aide-1.0.0/.gitignore +15 -0
  4. code_aide-1.0.0/AGENTS.md +12 -0
  5. code_aide-1.0.0/CLAUDE.md +1 -0
  6. code_aide-1.0.0/LICENSE +191 -0
  7. code_aide-1.0.0/PKG-INFO +133 -0
  8. code_aide-1.0.0/README.md +107 -0
  9. code_aide-1.0.0/pyproject.toml +48 -0
  10. code_aide-1.0.0/src/code_aide/__init__.py +3 -0
  11. code_aide-1.0.0/src/code_aide/__main__.py +6 -0
  12. code_aide-1.0.0/src/code_aide/commands_actions.py +344 -0
  13. code_aide-1.0.0/src/code_aide/commands_tools.py +183 -0
  14. code_aide-1.0.0/src/code_aide/config.py +105 -0
  15. code_aide-1.0.0/src/code_aide/console.py +58 -0
  16. code_aide-1.0.0/src/code_aide/constants.py +63 -0
  17. code_aide-1.0.0/src/code_aide/data/tools.json +100 -0
  18. code_aide-1.0.0/src/code_aide/detection.py +184 -0
  19. code_aide-1.0.0/src/code_aide/entry.py +112 -0
  20. code_aide-1.0.0/src/code_aide/install.py +305 -0
  21. code_aide-1.0.0/src/code_aide/operations.py +264 -0
  22. code_aide-1.0.0/src/code_aide/prereqs.py +179 -0
  23. code_aide-1.0.0/src/code_aide/status.py +86 -0
  24. code_aide-1.0.0/src/code_aide/versions.py +356 -0
  25. code_aide-1.0.0/tests/test_commands_actions.py +111 -0
  26. code_aide-1.0.0/tests/test_commands_tools.py +78 -0
  27. code_aide-1.0.0/tests/test_config.py +106 -0
  28. code_aide-1.0.0/tests/test_console.py +43 -0
  29. code_aide-1.0.0/tests/test_constants.py +13 -0
  30. code_aide-1.0.0/tests/test_detection.py +118 -0
  31. code_aide-1.0.0/tests/test_install.py +124 -0
  32. code_aide-1.0.0/tests/test_operations.py +158 -0
  33. code_aide-1.0.0/tests/test_status.py +76 -0
  34. code_aide-1.0.0/tests/test_versions.py +291 -0
@@ -0,0 +1,13 @@
1
+ name: CI
2
+ on: [push, pull_request]
3
+ jobs:
4
+ test:
5
+ runs-on: ${{ matrix.os }}
6
+ strategy:
7
+ matrix:
8
+ os: [ubuntu-latest, macos-latest]
9
+ python-version: ["3.11", "3.12", "3.13"]
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: astral-sh/setup-uv@v5
13
+ - run: uv run --python ${{ matrix.python-version }} pytest tests/ -v
@@ -0,0 +1,15 @@
1
+ name: Publish to PyPI
2
+ on:
3
+ push:
4
+ tags: ["v*"]
5
+ jobs:
6
+ publish:
7
+ runs-on: ubuntu-latest
8
+ permissions:
9
+ contents: read
10
+ id-token: write
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: astral-sh/setup-uv@v5
14
+ - run: uv build
15
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,15 @@
1
+ *$py.class
2
+ *.egg
3
+ *.egg-info/
4
+ *.py[cod]
5
+ .DS_Store
6
+ .claude/
7
+ .eggs
8
+ .idea/
9
+ .pytest_cache/
10
+ .venv/
11
+ .vscode/
12
+ __pycache__/
13
+ build/
14
+ dist/
15
+ uv.lock
@@ -0,0 +1,12 @@
1
+ # AGENTS.md - AI Coding Agent Instructions
2
+
3
+ ## Key Design Decisions
4
+
5
+ - No external dependencies - stdlib only
6
+ - Three-layer version data: bundled definitions, bundled baseline versions,
7
+ user's local cache (~/.config/code-aide/versions.json)
8
+ - All tests should pass before committing
9
+ - Run `black` formatter on python before commits
10
+ - Python 3.11+ compatible
11
+ - Keep files under 300 lines where practical
12
+ - Run `format-markdown` on markdown files before commits (if it is available)
@@ -0,0 +1 @@
1
+ See AGENTS.md for project instructions.
@@ -0,0 +1,191 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to the Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by the Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding any notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ Copyright 2026 Dave Beckett
180
+
181
+ Licensed under the Apache License, Version 2.0 (the "License");
182
+ you may not use this file except in compliance with the License.
183
+ You may obtain a copy of the License at
184
+
185
+ http://www.apache.org/licenses/LICENSE-2.0
186
+
187
+ Unless required by applicable law or agreed to in writing, software
188
+ distributed under the License is distributed on an "AS IS" BASIS,
189
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190
+ See the License for the specific language governing permissions and
191
+ limitations under the License.
@@ -0,0 +1,133 @@
1
+ Metadata-Version: 2.4
2
+ Name: code-aide
3
+ Version: 1.0.0
4
+ Summary: Manage AI coding CLI tools (Claude, Cursor, Gemini, Amp, Codex)
5
+ Project-URL: Homepage, https://github.com/dajobe/code-aide
6
+ Project-URL: Repository, https://github.com/dajobe/code-aide
7
+ Project-URL: Issues, https://github.com/dajobe/code-aide/issues
8
+ Project-URL: Changelog, https://github.com/dajobe/code-aide/releases
9
+ Author: Dave Beckett
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: Apache Software License
16
+ Classifier: Operating System :: MacOS
17
+ Classifier: Operating System :: POSIX :: Linux
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Software Development :: Build Tools
23
+ Classifier: Topic :: System :: Installation/Setup
24
+ Requires-Python: >=3.11
25
+ Description-Content-Type: text/markdown
26
+
27
+ # code-aide
28
+
29
+ An aide for your AI coding tools.
30
+
31
+ Manages installation, upgrade, removal, and version tracking of AI coding CLI
32
+ tools: Claude Code, Cursor, Gemini, Amp, and Codex.
33
+
34
+ ## Installation
35
+
36
+ ```bash
37
+ # Run without installing (requires uv)
38
+ uvx code-aide status
39
+
40
+ # Install persistently
41
+ uv tool install code-aide
42
+
43
+ # Or use pipx
44
+ pipx install code-aide
45
+ ```
46
+
47
+ ## Usage
48
+
49
+ ```bash
50
+ # List available tools and their status
51
+ code-aide list
52
+
53
+ # Show detailed status for installed tools
54
+ code-aide status
55
+
56
+ # Install specific tools
57
+ code-aide install claude gemini
58
+
59
+ # Install all default tools
60
+ code-aide install
61
+
62
+ # Install with automatic prerequisite installation (Node.js, npm)
63
+ code-aide install -p
64
+
65
+ # Upgrade installed tools
66
+ code-aide upgrade [NAMES]
67
+
68
+ # Remove tools
69
+ code-aide remove [NAMES]
70
+
71
+ # Check upstream for latest versions (dry-run)
72
+ code-aide update-versions -n
73
+
74
+ # Update version cache
75
+ code-aide update-versions -y
76
+ ```
77
+
78
+ ## Supported Tools
79
+
80
+ | Tool | Command | Install Type | Default |
81
+ |--------------------------|----------|--------------------|---------|
82
+ | Cursor CLI | `agent` | Direct download | Yes |
83
+ | Claude CLI (Claude Code) | `claude` | Self-managed (npm) | Yes |
84
+ | Gemini CLI | `gemini` | npm | Yes |
85
+ | Amp (Sourcegraph) | `amp` | Script | No |
86
+ | Codex CLI | `codex` | npm | No |
87
+
88
+ ## How Version Data Works
89
+
90
+ code-aide uses a three-layer version data model:
91
+
92
+ 1. **Tool definitions** (bundled with the package): Install methods, URLs, npm
93
+ packages, version args. Updated by releasing new versions of code-aide.
94
+
95
+ 2. **Bundled version baseline** (in `data/tools.json`): Latest versions and
96
+ SHA256 hashes as known at release time. Acts as a fallback for fresh
97
+ installs.
98
+
99
+ 3. **User's local version cache** (`~/.config/code-aide/versions.json`): Written
100
+ by `code-aide update-versions`. Takes precedence over bundled data when
101
+ present.
102
+
103
+ Run `code-aide update-versions` to get fresher version data without waiting for
104
+ a new code-aide release.
105
+
106
+ ## Features
107
+
108
+ - Zero external dependencies (Python stdlib only)
109
+ - SHA256 verification for script-based installations
110
+ - Automatic prerequisite detection and installation (Node.js, npm)
111
+ - Detects install method (Homebrew, npm, system package, script, direct
112
+ download)
113
+ - PATH configuration validation and warnings
114
+ - Supports Linux and macOS
115
+
116
+ ## Requirements
117
+
118
+ - Python 3.11+
119
+ - No external Python dependencies
120
+
121
+ ## Development
122
+
123
+ ```bash
124
+ # Run tests
125
+ uv run pytest tests/ -v
126
+
127
+ # Run a specific test
128
+ uv run pytest tests/test_install.py::TestDetectOsArch -v
129
+ ```
130
+
131
+ ## License
132
+
133
+ Apache-2.0
@@ -0,0 +1,107 @@
1
+ # code-aide
2
+
3
+ An aide for your AI coding tools.
4
+
5
+ Manages installation, upgrade, removal, and version tracking of AI coding CLI
6
+ tools: Claude Code, Cursor, Gemini, Amp, and Codex.
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ # Run without installing (requires uv)
12
+ uvx code-aide status
13
+
14
+ # Install persistently
15
+ uv tool install code-aide
16
+
17
+ # Or use pipx
18
+ pipx install code-aide
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ ```bash
24
+ # List available tools and their status
25
+ code-aide list
26
+
27
+ # Show detailed status for installed tools
28
+ code-aide status
29
+
30
+ # Install specific tools
31
+ code-aide install claude gemini
32
+
33
+ # Install all default tools
34
+ code-aide install
35
+
36
+ # Install with automatic prerequisite installation (Node.js, npm)
37
+ code-aide install -p
38
+
39
+ # Upgrade installed tools
40
+ code-aide upgrade [NAMES]
41
+
42
+ # Remove tools
43
+ code-aide remove [NAMES]
44
+
45
+ # Check upstream for latest versions (dry-run)
46
+ code-aide update-versions -n
47
+
48
+ # Update version cache
49
+ code-aide update-versions -y
50
+ ```
51
+
52
+ ## Supported Tools
53
+
54
+ | Tool | Command | Install Type | Default |
55
+ |--------------------------|----------|--------------------|---------|
56
+ | Cursor CLI | `agent` | Direct download | Yes |
57
+ | Claude CLI (Claude Code) | `claude` | Self-managed (npm) | Yes |
58
+ | Gemini CLI | `gemini` | npm | Yes |
59
+ | Amp (Sourcegraph) | `amp` | Script | No |
60
+ | Codex CLI | `codex` | npm | No |
61
+
62
+ ## How Version Data Works
63
+
64
+ code-aide uses a three-layer version data model:
65
+
66
+ 1. **Tool definitions** (bundled with the package): Install methods, URLs, npm
67
+ packages, version args. Updated by releasing new versions of code-aide.
68
+
69
+ 2. **Bundled version baseline** (in `data/tools.json`): Latest versions and
70
+ SHA256 hashes as known at release time. Acts as a fallback for fresh
71
+ installs.
72
+
73
+ 3. **User's local version cache** (`~/.config/code-aide/versions.json`): Written
74
+ by `code-aide update-versions`. Takes precedence over bundled data when
75
+ present.
76
+
77
+ Run `code-aide update-versions` to get fresher version data without waiting for
78
+ a new code-aide release.
79
+
80
+ ## Features
81
+
82
+ - Zero external dependencies (Python stdlib only)
83
+ - SHA256 verification for script-based installations
84
+ - Automatic prerequisite detection and installation (Node.js, npm)
85
+ - Detects install method (Homebrew, npm, system package, script, direct
86
+ download)
87
+ - PATH configuration validation and warnings
88
+ - Supports Linux and macOS
89
+
90
+ ## Requirements
91
+
92
+ - Python 3.11+
93
+ - No external Python dependencies
94
+
95
+ ## Development
96
+
97
+ ```bash
98
+ # Run tests
99
+ uv run pytest tests/ -v
100
+
101
+ # Run a specific test
102
+ uv run pytest tests/test_install.py::TestDetectOsArch -v
103
+ ```
104
+
105
+ ## License
106
+
107
+ Apache-2.0
@@ -0,0 +1,48 @@
1
+ [project]
2
+ name = "code-aide"
3
+ version = "1.0.0"
4
+ description = "Manage AI coding CLI tools (Claude, Cursor, Gemini, Amp, Codex)"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Dave Beckett" },
8
+ ]
9
+ license = "Apache-2.0"
10
+ requires-python = ">=3.11"
11
+ dependencies = []
12
+ classifiers = [
13
+ "Development Status :: 5 - Production/Stable",
14
+ "Environment :: Console",
15
+ "Intended Audience :: Developers",
16
+ "License :: OSI Approved :: Apache Software License",
17
+ "Operating System :: MacOS",
18
+ "Operating System :: POSIX :: Linux",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Topic :: Software Development :: Build Tools",
24
+ "Topic :: System :: Installation/Setup",
25
+ ]
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/dajobe/code-aide"
29
+ Repository = "https://github.com/dajobe/code-aide"
30
+ Issues = "https://github.com/dajobe/code-aide/issues"
31
+ Changelog = "https://github.com/dajobe/code-aide/releases"
32
+
33
+ [project.scripts]
34
+ code-aide = "code_aide.__main__:main"
35
+
36
+ [build-system]
37
+ requires = ["hatchling"]
38
+ build-backend = "hatchling.build"
39
+
40
+ [tool.pytest.ini_options]
41
+ testpaths = ["tests"]
42
+
43
+ [dependency-groups]
44
+ dev = [
45
+ "pytest>=8.0",
46
+ "pytest-xdist>=3.0",
47
+ "black>=25.1.0",
48
+ ]
@@ -0,0 +1,3 @@
1
+ """code-aide - Manage AI coding CLI tools."""
2
+
3
+ __version__ = "1.0.0"
@@ -0,0 +1,6 @@
1
+ """Entry point for python -m code_aide."""
2
+
3
+ from code_aide.entry import main
4
+
5
+ if __name__ == "__main__":
6
+ main()