Metadata-Version: 2.4
Name: ydt1363
Version: 0.1.1
Summary: Python implementation for YDT 1363 protocol
Author: ydt1363 contributors
License: Apache-2.0
Project-URL: Homepage, https://github.com/jcaden/py-ydt1363
Project-URL: Repository, https://github.com/jcaden/py-ydt1363
Project-URL: Issues, https://github.com/jcaden/py-ydt1363/issues
Keywords: ydt1363,protocol
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: py-flags>=1.1.4
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=3.0; extra == "dev"
Requires-Dist: black>=22.0; extra == "dev"
Requires-Dist: flake8>=4.0; extra == "dev"
Requires-Dist: mypy>=0.950; extra == "dev"
Requires-Dist: pylint>=4.0.4; extra == "dev"
Requires-Dist: bandit>=1.9.2; extra == "dev"
Dynamic: license-file

# py-ydt1363

[![PyPI version](https://img.shields.io/pypi/v/ydt1363)](https://pypi.org/project/ydt1363/)
![License](https://img.shields.io/pypi/l/ydt1363)
![Python versions](https://img.shields.io/pypi/pyversions/ydt1363)

Python implementation for YDT 1363 protocol.

## Installation

### From source

```bash
pip install .
```

### Development installation

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

## Usage

```python
import ydt1363

# Your code here
```

## Development

### Setup development environment

```bash
# Clone the repository
git clone https://github.com/jcaden/py-ydt1363.git
cd py-ydt1363

# Install in development mode with dev dependencies
pip install -e ".[dev]"
```

### Running tests

```bash
pytest
```

### Code formatting

```bash
black ydt1363 tests
```

### Linting

```bash
flake8 ydt1363 tests
mypy ydt1363
```

## License

This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.
