Metadata-Version: 2.1
Name: kaditya
Version: 1.0.1
Summary: Aditya's resume as a PyPI package
Project-URL: Homepage, https://github.com/yourusername/kaditya-pypi
Project-URL: Repository, https://github.com/yourusername/kaditya-pypi
Author: Aditya
License: MIT
Keywords: aditya,cv,kaditya,resume
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# kaditya

Aditya's resume as a PyPI package.

## Installation

```bash
pip install kaditya
```

## Usage

### As a CLI tool

```bash
kaditya
```

### As a module

```python
from kaditya import resume, print_resume

# Access resume data
print(resume['name'])
print(resume['skills'])

# Print formatted resume
print_resume()
```

## Programmatic API

### `resume`

A dictionary containing the resume data:
- `name`: Name
- `title`: Job title
- `contact`: Contact information (email, github, linkedin)
- `summary`: Professional summary
- `skills`: List of skills
- `experience`: List of work experience dictionaries
- `education`: List of education dictionaries

### `print_resume()`

Prints a formatted version of the resume to the console.

## License

MIT
