Metadata-Version: 2.4
Name: pyeqx-common
Version: 0.1.0
Summary: Python library for common method use in PyEQX ecosystem.
Author: ESBM Team
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: python-dotenv; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: pytest-mock; extra == "dev"
Requires-Dist: pytest-watch; extra == "dev"

# esbm-dis-dfts-pyeqx-common

This project is a common library for pyeqx projects.

## pre-requisites

to setup virtual environment to execute unit tests, it has to setup virtual env and install dependencies

```bash
# setup virtual env
python3.11 -m venv .venv

# activate virtual env
source .venv/bin/activate
```

## tests

to execute unit test run this command at root of the project

```bash
pytest -s
```

## build

to build the package run this command at root of the project

```bash
python3 -m pip install --upgrade build
python3 -m build
```
