Metadata-Version: 2.4
Name: dummy-test-package-vasumadaan
Version: 0.1.0
Summary: A dummy package for testing private PyPI index
Home-page: https://github.com/yourusername/dummy-package
Author: Vasu Madaan
Author-email: Vasu Madaan <vasu@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Dummy Test Package

This is a dummy Python package created for testing private PyPI index uploads.

## Installation

```bash
pip install dummy-test-package
```

## Usage

```python
from dummy_package import greet

greet("World")
```

## Building the Package

```bash
python -m build
```

## Uploading to Private PyPI

```bash
twine upload --repository-url https://your-private-pypi-url/simple/ dist/*
```
