Metadata-Version: 2.4
Name: dbrx_de_ops
Version: 0.0.0
Summary: My package description
Author-email: "<your name>" <some-email@gmail.com>
License: MIT
Keywords: one,two
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: boto3
Requires-Dist: importlib-metadata<4.0.0
Requires-Dist: fastapi
Requires-Dist: pydantic_settings
Requires-Dist: loguru
Provides-Extra: aws-lambda
Requires-Dist: mangum; extra == "aws-lambda"
Requires-Dist: python-multipart; extra == "aws-lambda"
Provides-Extra: api
Requires-Dist: uvicorn; extra == "api"
Requires-Dist: moto[server]; extra == "api"
Provides-Extra: stubs
Requires-Dist: boto3-stubs[s3]; extra == "stubs"
Provides-Extra: notebooks
Requires-Dist: jupyterlab; extra == "notebooks"
Requires-Dist: ipykernel; extra == "notebooks"
Requires-Dist: rich; extra == "notebooks"
Requires-Dist: python-multipart; extra == "notebooks"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: moto[s3]; extra == "test"
Provides-Extra: release
Requires-Dist: build; extra == "release"
Requires-Dist: twine; extra == "release"
Provides-Extra: static-code-qa
Requires-Dist: pre-commit; extra == "static-code-qa"
Requires-Dist: pylint; extra == "static-code-qa"
Requires-Dist: black; extra == "static-code-qa"
Requires-Dist: isort; extra == "static-code-qa"
Requires-Dist: flake8; extra == "static-code-qa"
Requires-Dist: flake8-docstrings; extra == "static-code-qa"
Requires-Dist: Flake8-pyproject; extra == "static-code-qa"
Requires-Dist: radon; extra == "static-code-qa"
Provides-Extra: dev
Requires-Dist: dbrx_de_ops[api,aws-lambda,notebooks,release,static-code-qa,stubs,test]; extra == "dev"

# dbrx_de_ops

## Quick start

```bash
pip install dbrx_de_ops
```

```python
from dbrx_ops import ...
```

## Developing/Contributing

### System requirements

You will need the following installed on your machine to develop on this codebase

- `make` AKA `cmake`, e.g. `sudo apt-get update -y; sudo apt-get install cmake -y`
- Python 3.7+, ideally using `pyenv` to easily change between Python versions
- `git`

###

```bash
# clone the repo
git clone https://github.com/<your github username>/dbrx_de_ops.git

# install the dev dependencies
make install

# run the tests
make test
```
