Metadata-Version: 2.4
Name: usnan
Version: 0.1.0
Summary: Python SDK for USNAN API
Author: Jonathan Wedell
Project-URL: Homepage, https://usnan.nmrhub.org
Project-URL: Repository, https://github.com/usnan/usnan-sdk
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.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.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Provides-Extra: doc
Requires-Dist: sphinx; extra == "doc"

# USNAN SDK

Python SDK for interacting with the USNAN API.

## Installation

```bash
pip install usnan
```

## Usage

See the full documentation at [ReadTheDocs](https://pythonsdk.readthedocs.io/en/latest/index.html).

## Development

Install development dependencies:

```bash
pip install -e ".[dev]"
```

Run tests:

```bash
pytest
```
