vscode-essentials


Namevscode-essentials JSON
Version 0.3.0 PyPI version JSON
download
home_pageNone
SummaryEssential utilities for VS Code development
upload_time2025-07-23 11:42:41
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords vscode development utilities
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # vscode-essentials

Essential utilities for VS Code development.

## Installation

```bash
pip install vscode-essentials
```

## Usage

```python
from vscode_essentials import hello_world

print(hello_world())
```

## Development

To install in development mode:

```bash
pip install -e .
```

## Building and Publishing

1. Install build tools:
   ```bash
   pip install build twine
   ```

2. Build the package:
   ```bash
   python -m build
   ```

3. Upload to PyPI (test first):
   ```bash
   # Test PyPI first
   twine upload --repository testpypi dist/*
   
   # Then to real PyPI
   twine upload dist/*
   ```

## License

MIT License - see LICENSE file for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "vscode-essentials",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "vscode, development, utilities",
    "author": null,
    "author_email": "SAI <me@steveimm.id>",
    "download_url": "https://files.pythonhosted.org/packages/75/2e/0896c41b30f2300ad1aaefecb4fd0732e6d75fc3ca312d28080576eb37e6/vscode_essentials-0.3.0.tar.gz",
    "platform": null,
    "description": "# vscode-essentials\n\nEssential utilities for VS Code development.\n\n## Installation\n\n```bash\npip install vscode-essentials\n```\n\n## Usage\n\n```python\nfrom vscode_essentials import hello_world\n\nprint(hello_world())\n```\n\n## Development\n\nTo install in development mode:\n\n```bash\npip install -e .\n```\n\n## Building and Publishing\n\n1. Install build tools:\n   ```bash\n   pip install build twine\n   ```\n\n2. Build the package:\n   ```bash\n   python -m build\n   ```\n\n3. Upload to PyPI (test first):\n   ```bash\n   # Test PyPI first\n   twine upload --repository testpypi dist/*\n   \n   # Then to real PyPI\n   twine upload dist/*\n   ```\n\n## License\n\nMIT License - see LICENSE file for details.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Essential utilities for VS Code development",
    "version": "0.3.0",
    "project_urls": {
        "Homepage": "https://github.com/yourusername/vscode-essentials",
        "Issues": "https://github.com/yourusername/vscode-essentials/issues",
        "Repository": "https://github.com/yourusername/vscode-essentials"
    },
    "split_keywords": [
        "vscode",
        " development",
        " utilities"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3de731b9a63dc8aa2b2112e5b2cbc2dfcf009ae235ce270bd2713e68536cb33a",
                "md5": "40586c6bf87f582b805c0874dd486b1e",
                "sha256": "6cf5264e9e7779288d293a35c21dd99c148b318b52b548cb281b8f13081cbfc1"
            },
            "downloads": -1,
            "filename": "vscode_essentials-0.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "40586c6bf87f582b805c0874dd486b1e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 98977070,
            "upload_time": "2025-07-23T11:42:27",
            "upload_time_iso_8601": "2025-07-23T11:42:27.054448Z",
            "url": "https://files.pythonhosted.org/packages/3d/e7/31b9a63dc8aa2b2112e5b2cbc2dfcf009ae235ce270bd2713e68536cb33a/vscode_essentials-0.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "752e0896c41b30f2300ad1aaefecb4fd0732e6d75fc3ca312d28080576eb37e6",
                "md5": "2cde31e1dd55fe67d94b436a2e1f69e1",
                "sha256": "d023eeb6b27d77197327eddb8980763b166e6f7448d5d90be906a2c0d2c4cbb0"
            },
            "downloads": -1,
            "filename": "vscode_essentials-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2cde31e1dd55fe67d94b436a2e1f69e1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 98975123,
            "upload_time": "2025-07-23T11:42:41",
            "upload_time_iso_8601": "2025-07-23T11:42:41.427424Z",
            "url": "https://files.pythonhosted.org/packages/75/2e/0896c41b30f2300ad1aaefecb4fd0732e6d75fc3ca312d28080576eb37e6/vscode_essentials-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-23 11:42:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yourusername",
    "github_project": "vscode-essentials",
    "github_not_found": true,
    "lcname": "vscode-essentials"
}
        
Elapsed time: 0.42451s