vscode-essentials 0.1.0__py3-none-any.whl → 0.2.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.
@@ -2,11 +2,29 @@
2
2
  vscode-essentials: Essential utilities for VS Code development
3
3
  """
4
4
 
5
- __version__ = "0.1.0"
6
- __author__ = "Your Name"
7
- __email__ = "your.email@example.com"
5
+ import os
6
+
7
+ __version__ = "0.2.0"
8
+ __author__ = "SAI"
9
+ __email__ = "me@steveimm.id"
8
10
 
9
11
  # You can add your main functions or classes here
10
12
  def hello_world():
11
13
  """Simple hello world function for testing."""
12
14
  return "Hello from vscode-essentials!"
15
+
16
+ def get_vsix_directory():
17
+ """Get the path to the bundled VSIX files."""
18
+ return os.path.join(os.path.dirname(__file__), 'vsix')
19
+
20
+ def list_vsix_files():
21
+ """List all available VSIX files."""
22
+ vsix_dir = get_vsix_directory()
23
+ if os.path.exists(vsix_dir):
24
+ return [f for f in os.listdir(vsix_dir) if f.endswith('.vsix')]
25
+ return []
26
+
27
+ def get_vsix_path(filename):
28
+ """Get the full path to a specific VSIX file."""
29
+ vsix_dir = get_vsix_directory()
30
+ return os.path.join(vsix_dir, filename)
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vscode-essentials
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: Essential utilities for VS Code development
5
5
  Author-email: SAI <me@steveimm.id>
6
6
  License: MIT
@@ -0,0 +1,10 @@
1
+ vscode_essentials/__init__.py,sha256=RFJksNlzXOPRRxDXipyqf7gaTg8zWiMxtw40uDBaw1E,835
2
+ vscode_essentials/__pycache__/__init__.cpython-311.pyc,sha256=DM4dAuFNJ7iI679s1wJSWwkvc9b72Auz36PsxnvdUtU,1885
3
+ vscode_essentials/vsix/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ vscode_essentials/vsix/continue.continue-0.0.412.vsix,sha256=ZVQxThv6alCr13AAjePdzOi8tDQMjZcA-eJQ4OBKfic,6589496
5
+ vscode_essentials/vsix/ms-python.python-2024.8.1.vsix,sha256=Lbnix2IQQu8Lg5GAhi53Uv0oChoCRKiQHzve8aZgtvA,9343016
6
+ vscode_essentials-0.2.0.dist-info/licenses/LICENSE,sha256=OphKV48tcMv6ep-7j-8T6nycykPT0g8ZlMJ9zbGvdPs,1066
7
+ vscode_essentials-0.2.0.dist-info/METADATA,sha256=kL8LhIct0o_Hf7YZ4WNDM5blm_nbQaJW6SloByf6oqg,1651
8
+ vscode_essentials-0.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
9
+ vscode_essentials-0.2.0.dist-info/top_level.txt,sha256=o5vqmERtTEKXrsmP2r2ZA3bdrDdAJ9_v9MxntY7SMig,18
10
+ vscode_essentials-0.2.0.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- vscode_essentials/__init__.py,sha256=5PptGq3CuH2mHtnSzFqSU5oBba2I-ju8y3EQtsNYLsE,320
2
- vscode_essentials-0.1.0.dist-info/licenses/LICENSE,sha256=OphKV48tcMv6ep-7j-8T6nycykPT0g8ZlMJ9zbGvdPs,1066
3
- vscode_essentials-0.1.0.dist-info/METADATA,sha256=V65MRlJn6tjG-7wbJY-EDth78r21AAlREyvROvHMZ4k,1651
4
- vscode_essentials-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
- vscode_essentials-0.1.0.dist-info/top_level.txt,sha256=o5vqmERtTEKXrsmP2r2ZA3bdrDdAJ9_v9MxntY7SMig,18
6
- vscode_essentials-0.1.0.dist-info/RECORD,,