Metadata-Version: 2.4
Name: labcli44044
Version: 0.1.1
Summary: CLI to list and run lab programs stored in a programs/ directory
Author: labuser
License: MIT License
        
        Copyright (c) 2025 labuser
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/Shakthi44044/labcli
Project-URL: Bug Tracker, https://github.com/Shakthi44044/labcli/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

labmanager
=========

A small CLI tool to list and show Python lab programs stored in the repository's `program/` folder.

Quick usage (run from the repository root):

List available program files:

```powershell
python -m labmanager.cli list
```

Show a program file:

```powershell
python -m labmanager.cli show Average_Temperature_by_City.py
```

Install locally for global usage (editable/development install):

```powershell
pip install -e .
```

After installing, the `labcli` console script becomes available:

```powershell
labcli list
labcli show README.md
```

Install directly from GitHub (useful for other machines):

```powershell
pip install git+https://github.com/Shakthi44044/labcli.git
```

Publishing to PyPI (optional):

- Build the package: `python -m build` (requires `build` package)
- Upload with Twine: `python -m twine upload dist/*` (requires `twine`)

Notes
- `show` reads files as UTF-8. Use `--dir` if you installed the package and want to point to a different `program/` folder on disk.
- The package uses a console script `labcli` (configured in `pyproject.toml`).
