codetour-cli 0.1.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.
- codetour_cli/__init__.py +9 -0
- codetour_cli/cli.py +2087 -0
- codetour_cli/config.py +144 -0
- codetour_cli/description_validator.py +197 -0
- codetour_cli/detection.py +91 -0
- codetour_cli/discovery.py +226 -0
- codetour_cli/lint.py +334 -0
- codetour_cli/logging/__init__.py +6 -0
- codetour_cli/logging/setup.py +63 -0
- codetour_cli/migration/__init__.py +6 -0
- codetour_cli/migration/direct.py +385 -0
- codetour_cli/migration/git_diff.py +418 -0
- codetour_cli/migration/stepwise.py +400 -0
- codetour_cli/review_parser.py +348 -0
- codetour_cli/schema_models.py +203 -0
- codetour_cli/tour/__init__.py +6 -0
- codetour_cli/tour/schema.py +255 -0
- codetour_cli/tour/updater.py +428 -0
- codetour_cli-0.1.0.dist-info/METADATA +47 -0
- codetour_cli-0.1.0.dist-info/RECORD +24 -0
- codetour_cli-0.1.0.dist-info/WHEEL +5 -0
- codetour_cli-0.1.0.dist-info/entry_points.txt +2 -0
- codetour_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
- codetour_cli-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: codetour-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Algorithmic maintenance of CodeTour files — an unofficial companion CLI for the CodeTour VS Code extension
|
|
5
|
+
Author: Jérémie Lumbroso
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/jlumbroso/codetour-cli
|
|
8
|
+
Project-URL: Repository, https://github.com/jlumbroso/codetour-cli
|
|
9
|
+
Keywords: codetour,code-tour,vscode,git,cli
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Requires-Dist: gitpython
|
|
22
|
+
Requires-Dist: pydantic>=2.0
|
|
23
|
+
Requires-Dist: structlog
|
|
24
|
+
Requires-Dist: rich
|
|
25
|
+
Requires-Dist: python-dotenv
|
|
26
|
+
Requires-Dist: pyyaml
|
|
27
|
+
Requires-Dist: click>=8.0
|
|
28
|
+
Requires-Dist: jinja2>=3.0
|
|
29
|
+
Requires-Dist: json-source-edit<2,>=1.0
|
|
30
|
+
Provides-Extra: dev
|
|
31
|
+
Requires-Dist: pytest; extra == "dev"
|
|
32
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
33
|
+
Requires-Dist: black; extra == "dev"
|
|
34
|
+
Requires-Dist: ruff; extra == "dev"
|
|
35
|
+
Requires-Dist: mypy; extra == "dev"
|
|
36
|
+
Dynamic: license-file
|
|
37
|
+
|
|
38
|
+
# CodeTour CLI
|
|
39
|
+
|
|
40
|
+
A CLI to reliably migrate CodeTours in the background, and prevent drift.
|
|
41
|
+
|
|
42
|
+
> **Unofficial companion tool.** `codetour-cli` is an independent,
|
|
43
|
+
> unofficial companion to [CodeTour](https://github.com/microsoft/codetour),
|
|
44
|
+
> the VS Code extension by Jonathan Carter (Microsoft). It is not
|
|
45
|
+
> affiliated with, endorsed by, or maintained by Microsoft or the CodeTour
|
|
46
|
+
> project. It exists to *serve* CodeTour and its users — keeping `.tour`
|
|
47
|
+
> files accurate as the code they walk through evolves.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
codetour_cli/__init__.py,sha256=LEFc9bsnqdEwqupAgh_CZlhu9_AwVD5ZPf8J_Zgt5Po,287
|
|
2
|
+
codetour_cli/cli.py,sha256=0QowapcUHQ9Pj0pXgX4yMWC-5iCpf31DWS1_XF0kKUI,76630
|
|
3
|
+
codetour_cli/config.py,sha256=LJQHk4wXl02pn1cVvCWMOIoCXTsLlMxCODkYlMakOMU,3621
|
|
4
|
+
codetour_cli/description_validator.py,sha256=Y1mR_k4nEEmxVfCU0awV5cxqxoCBmaziNaVllWn3lN0,6258
|
|
5
|
+
codetour_cli/detection.py,sha256=7smYGzCI7FU5mQCRc5Vb9AviuhoDS8eUe5WRNlu2ubE,2765
|
|
6
|
+
codetour_cli/discovery.py,sha256=ng71c9cX1MAzn8Pd2bteKH_hhIxtTE22zLNzQktW7s0,6413
|
|
7
|
+
codetour_cli/lint.py,sha256=PhL1anXwc2jX7WcEJNNePbLsRRYq-gOQIkaGXZMiN6I,11236
|
|
8
|
+
codetour_cli/review_parser.py,sha256=CxbLLzQft2Ztp84zr6GybLyPe0wF8cpNnS8gxKnJiOk,11417
|
|
9
|
+
codetour_cli/schema_models.py,sha256=FRqYSfKS_edhF_eSRAyerlXSOcCp3TKkCEc4zO0A-AI,6086
|
|
10
|
+
codetour_cli/logging/__init__.py,sha256=5x_BHUEhzz_398OwXtR36W57zjdNzKiKp0ooBa6icuU,164
|
|
11
|
+
codetour_cli/logging/setup.py,sha256=Jcs2P5ZvqGEgMrUuvUDyqr6QYV8BtoSX7yOrEmPWn98,1737
|
|
12
|
+
codetour_cli/migration/__init__.py,sha256=0tj0XyIHrmoqGUN6FFzhuGt2fQ6vuhI_ODCEYsfL5yI,204
|
|
13
|
+
codetour_cli/migration/direct.py,sha256=2ndTWdH5dcqtuIbmLBJN1-_g3gki5TsraaAWEaObwgY,12446
|
|
14
|
+
codetour_cli/migration/git_diff.py,sha256=M41Mcw6mPwRPjS1P08WGOcZ430IYr_i5k_UB9GSgf1g,13732
|
|
15
|
+
codetour_cli/migration/stepwise.py,sha256=Z6tlseCXzLex9KzV4dZaaKBMuUn3g_0CRLzZf1lKBnQ,12966
|
|
16
|
+
codetour_cli/tour/__init__.py,sha256=bsZah-ebJPsb7XYo0fvEUlVo3F1dokyzypBbhjwtARc,148
|
|
17
|
+
codetour_cli/tour/schema.py,sha256=UOljEsHNJk3ik022hCLS-ukwSmq5rBo4TxcNT8fMV7I,7737
|
|
18
|
+
codetour_cli/tour/updater.py,sha256=zmtgcUl9ecnrSZkBHXDp3VzuHK7w6O2qhg3QGeZIUDw,12440
|
|
19
|
+
codetour_cli-0.1.0.dist-info/licenses/LICENSE,sha256=wG31d7hCq0RBhofxVSp9vS4KgrfFG0vIGyUcoH-HjUo,1075
|
|
20
|
+
codetour_cli-0.1.0.dist-info/METADATA,sha256=QSSlGZ89Y5tN709QoNQZWKrHCwN6BPlRXBr7ZoV-ZZs,1869
|
|
21
|
+
codetour_cli-0.1.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
22
|
+
codetour_cli-0.1.0.dist-info/entry_points.txt,sha256=ke0LLw8JCr6CrMVEOecS2BDf-YPk8YhMNmxJhmD1wmE,55
|
|
23
|
+
codetour_cli-0.1.0.dist-info/top_level.txt,sha256=4tbU9iGVj3wp6C_plyr9LZK3HVLHHHRiCDyj1spSAAg,13
|
|
24
|
+
codetour_cli-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jérémie Lumbroso
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
codetour_cli
|