Metadata-Version: 2.4
Name: harsh-testing-sdk
Version: 0.1.0
Summary: A test Python SDK package used to validate PyPI and TestPyPI publishing.
Project-URL: Homepage, https://github.com/harshfims/harsh-testing-sdk
Project-URL: Repository, https://github.com/harshfims/harsh-testing-sdk
Project-URL: Issues, https://github.com/harshfims/harsh-testing-sdk/issues
Author-email: Harsh <harshf.ims.in@gmail.com>
License: MIT
License-File: LICENSE
Keywords: pypi,sdk,testing,testpypi
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == 'dev'
Requires-Dist: pytest>=8; extra == 'dev'
Requires-Dist: twine>=5; extra == 'dev'
Description-Content-Type: text/markdown

# harsh-testing-sdk

A small test Python SDK package for validating publishing through the personal
TestPyPI and PyPI accounts owned by Harsh.

## Install from TestPyPI

```bash
python -m pip install   --index-url https://test.pypi.org/simple/   harsh-testing-sdk
```

## Install from PyPI

```bash
python -m pip install harsh-testing-sdk
```

## Usage

```python
from harsh_testing_sdk import TestingClient

client = TestingClient(name="Harsh")
print(client.greet())
```

Expected output:

```text
Hello, Harsh! harsh-testing-sdk is working.
```

## Development

```bash
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
pytest
python -m build
python -m twine check dist/*
```
