Metadata-Version: 2.1
Name: neos_common
Version: 0.10.7
Summary: Nortal Common Code
Home-page: https://github.com/NEOS-Critical/neos-platform-common
License: closed
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary 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
Requires-Dist: confluent-kafka (==2.0.2)
Requires-Dist: fastapi (>=0.101,<0.102)
Requires-Dist: httpx (>=0.23.0,<0.24.0)
Requires-Dist: multidict (>=6.0.4,<7.0.0)
Requires-Dist: pydantic (>=2,<3)
Requires-Dist: pydantic-settings (>=2.0.0,<3.0.0)
Requires-Dist: python-keycloak (>=2.6.0,<3.0.0)
Requires-Dist: web-error (>=0.5.0,<0.6.0)
Project-URL: Repository, https://github.com/NEOS-Critical/neos-platform-common
Description-Content-Type: text/markdown

# NEOS Platform Common Code v0.10.7

## Prerequisites

The following packages are used across python repositories. A global install of them all is *highly* recommended.

* [Poetry](https://python-poetry.org/docs/#installation)
* [Invoke](https://www.pyinvoke.org/installing.html)

### WSL

If running on Windows, you may need to install `distutils` to install the service.

```bash
$ sudo apt-get install python3.8-distutils
```

## Initial setup

```bash
$ invoke install-dev
```

## Code Quality

### Tests

```bash
invoke tests
invoke tests-coverage
```

## Linting

```bash
invoke check-style
invoke isort
```

## Releases

Release management is handled using `bump2version`. The below commands will tag
a new release. Jenkins will then publish the release to the artifact repository.

```bash
$ invoke bump-patch
$ invoke bump-minor
$ invoke bump-major
> vX.Y.Z
```

