Metadata-Version: 2.4
Name: psrpcore
Version: 0.3.1
Summary: Core components for the PowerShell Remoting Protocol
Author-email: Jordan Borean <jborean93@gmail.com>
License: MIT License
        
        Copyright (c) 2021 Jordan Borean, Red Hat
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: homepage, https://github.com/jborean93/psrpcore
Project-URL: documentation, https://psrpcore.readthedocs.io/
Keywords: psrp,pwsh,powershell,remoting
Classifier: Development Status :: 4 - Beta
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
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cryptography
Dynamic: license-file

# psrpcore - Python PowerShell Remoting Protocol Core Library

[![Test workflow](https://github.com/jborean93/psrpcore/actions/workflows/ci.yml/badge.svg)](https://github.com/jborean93/psrpcore/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/jborean93/psrpcore/branch/main/graph/badge.svg?token=UEA7VoocS5)](https://codecov.io/gh/jborean93/psrpcore)
[![PyPI version](https://badge.fury.io/py/psrpcore.svg)](https://badge.fury.io/py/psrpcore)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jborean93/PSAccessToken/blob/main/LICENSE)

Core library for PowerShell Remoting Protocol (PSRP) in Python.
This library enables you to write either client or a server side implementation for PSRP.
It does not provide any IO or concurrency logic as it's designed to be a pure Python implementation that is then used by other library.
This follows the [sans-IO](https://sans-io.readthedocs.io/) paradigm to promote re-usability and have it focus purely on the protocol logic.


## Documentation

Documentation is available at https://psrpcore.readthedocs.io/.


## Requirements

* CPython 3.8+
* [cryptography](https://github.com/pyca/cryptography)


## Install

### From PyPI

```bash
pip install psrpcore
```

### From Source

```bash
git clone https://github.com/jborean93/psrpcore.git
cd psrpcore
pip install -e .
```
