vscode-essentials 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.
@@ -0,0 +1,12 @@
1
+ """
2
+ vscode-essentials: Essential utilities for VS Code development
3
+ """
4
+
5
+ __version__ = "0.1.0"
6
+ __author__ = "Your Name"
7
+ __email__ = "your.email@example.com"
8
+
9
+ # You can add your main functions or classes here
10
+ def hello_world():
11
+ """Simple hello world function for testing."""
12
+ return "Hello from vscode-essentials!"
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.4
2
+ Name: vscode-essentials
3
+ Version: 0.1.0
4
+ Summary: Essential utilities for VS Code development
5
+ Author-email: SAI <me@steveimm.id>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourusername/vscode-essentials
8
+ Project-URL: Repository, https://github.com/yourusername/vscode-essentials
9
+ Project-URL: Issues, https://github.com/yourusername/vscode-essentials/issues
10
+ Keywords: vscode,development,utilities
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Dynamic: license-file
24
+
25
+ # vscode-essentials
26
+
27
+ Essential utilities for VS Code development.
28
+
29
+ ## Installation
30
+
31
+ ```bash
32
+ pip install vscode-essentials
33
+ ```
34
+
35
+ ## Usage
36
+
37
+ ```python
38
+ from vscode_essentials import hello_world
39
+
40
+ print(hello_world())
41
+ ```
42
+
43
+ ## Development
44
+
45
+ To install in development mode:
46
+
47
+ ```bash
48
+ pip install -e .
49
+ ```
50
+
51
+ ## Building and Publishing
52
+
53
+ 1. Install build tools:
54
+ ```bash
55
+ pip install build twine
56
+ ```
57
+
58
+ 2. Build the package:
59
+ ```bash
60
+ python -m build
61
+ ```
62
+
63
+ 3. Upload to PyPI (test first):
64
+ ```bash
65
+ # Test PyPI first
66
+ twine upload --repository testpypi dist/*
67
+
68
+ # Then to real PyPI
69
+ twine upload dist/*
70
+ ```
71
+
72
+ ## License
73
+
74
+ MIT License - see LICENSE file for details.
@@ -0,0 +1,6 @@
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,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Your Name
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
+ vscode_essentials