Metadata-Version: 2.4
Name: ds-protocol-graphql-py-lib
Version: 0.1.0a1
Summary: A Python package from the DS library collection
Author-email: Grasp Labs AS <hello@grasplabs.com>
Maintainer-email: Grasp Labs AS <hello@grasplabs.com>
License-Expression: Apache-2.0
Project-URL: Documentation, https://grasp-labs.github.io/ds-protocol-graphql-py-lib/
Project-URL: Repository, https://github.com/grasp-labs/ds-protocol-graphql-py-lib/
Project-URL: Issues, https://github.com/grasp-labs/ds-protocol-graphql-py-lib/issues/
Project-URL: Changelog, https://github.com/grasp-labs/ds-protocol-graphql-py-lib/releases
Keywords: ds,python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE-APACHE
Requires-Dist: ds-resource-plugin-py-lib<1.0.0,>=0.1.0rc3
Requires-Dist: ds-protocol-http-py-lib<1.0.0,>=0.1.0b5
Requires-Dist: ds-common-serde-py-lib<1.0.0,>=0.1.0b1
Requires-Dist: requests<3.0.0,>=2.32.0
Provides-Extra: dev
Requires-Dist: ruff>=0.1.8; extra == "dev"
Requires-Dist: mypy>=1.7.0; extra == "dev"
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: pytest-xdist>=3.3.0; extra == "dev"
Requires-Dist: pre-commit>=3.6.0; extra == "dev"
Requires-Dist: build>=1.0.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Requires-Dist: sphinx>=7.1.0; extra == "dev"
Requires-Dist: sphinx-autoapi>=3.0.0; extra == "dev"
Requires-Dist: sphinx-material>=0.0.35; extra == "dev"
Requires-Dist: bandit>=1.7.0; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest>=7.4.0; extra == "test"
Requires-Dist: pytest-cov>=4.1.0; extra == "test"
Requires-Dist: pytest-xdist>=3.3.0; extra == "test"
Provides-Extra: docs
Requires-Dist: sphinx>=7.1.0; extra == "docs"
Requires-Dist: sphinx-autoapi>=3.0.0; extra == "docs"
Requires-Dist: sphinx-material>=0.0.35; extra == "docs"
Dynamic: license-file

# ds-protocol-graphql-py-lib

A Python package from the ds-common library collection.

## Installation

Install the package using pip:

```bash
pip install ds-protocol-graphql-py-lib
```

Or using uv (recommended):

```bash
uv pip install ds-protocol-graphql-py-lib
```

## Quick Start

```python
from ds_protocol_graphql_py_lib import __version__

print(f"ds-protocol-graphql-py-lib version: {__version__}")
```

## Features

<!-- List your package features here -->
- Feature 1: Description of feature 1
- Feature 2: Description of feature 2
- Feature 3: Description of feature 3

## Usage

<!-- Add usage examples here -->

```python
# Example usage
import ds_protocol_graphql_py_lib

# Your code examples here
```

## Requirements

- Python 3.9 or higher
- <!-- List any required dependencies -->

## Optional Dependencies

<!-- List optional dependencies if any -->
- Optional dependency 1: Description
- Optional dependency 2: Description

## Documentation

Full documentation is available at:

- [GitHub Repository](https://github.com/grasp-labs/ds-protocol-graphql-py-lib)
- [Documentation Site](https://grasp-labs.github.io/ds-protocol-graphql-py-lib/)

## Development

To contribute or set up a development environment:

```bash
# Clone the repository
git clone https://github.com/grasp-labs/ds-protocol-graphql-py-lib.git
cd ds-protocol-graphql-py-lib

# Install development dependencies
uv sync --all-extras --dev

# Run tests
make test
```

See the [README](https://github.com/grasp-labs/ds-protocol-graphql-py-lib#readme)
for more information.

## License

This package is licensed under the Apache License 2.0.
See the [LICENSE-APACHE](https://github.com/grasp-labs/ds-protocol-graphql-py-lib/blob/main/LICENSE-APACHE)
file for details.

## Support

- **Issues**: [GitHub Issues](https://github.com/grasp-labs/ds-protocol-graphql-py-lib/issues)
- **Releases**: [GitHub Releases](https://github.com/grasp-labs/ds-protocol-graphql-py-lib/releases)
