Metadata-Version: 2.4
Name: gurumithran
Version: 0.2.0
Summary: CLI portfolio of Gurumithran
Author: Gurumithran V
License-Expression: MIT
Project-URL: Homepage, https://gurumithran.vercel.app/
Project-URL: Source, https://github.com/GURUMITHRAN-15
Keywords: cli,portfolio,rich,typer,python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.9.0

# Gurumithran CLI

A terminal-first CLI portfolio for Gurumithran.

## Install locally

1. Install build tools:

   python -m pip install --upgrade build

2. Build the package:

   python -m build

3. Install locally from the built wheel:

   python -m pip install dist/gurumithran-0.2.0-py3-none-any.whl

## Usage

- `gurumithran`
- `gurumithran about`
- `gurumithran skills`
- `gurumithran projects`
- `gurumithran links`
- `gurumithran github`

## Publish to PyPI

1. Install Twine:

   python -m pip install --upgrade twine

2. Build the distribution:

   python -m build

3. Upload to PyPI:

   python -m twine upload dist/*

> If you want to publish with your own package name, update `name` in `pyproject.toml` to the desired package name before building.
