Metadata-Version: 2.1
Name: ms-sqlserver-api
Version: 0.0.11
Summary: API to connect with Marathon system and migrate data to Bigquery
Author: Making Science
Requires-Python: >=3.8.1,<4.0.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: coverage (>=7.2.2,<8.0.0)
Requires-Dist: flake8 (>=6.0.0,<7.0.0)
Requires-Dist: gc-google-services-api (>=1.2.5,<2.0.0)
Requires-Dist: isort (>=5.12.0,<6.0.0)
Requires-Dist: pre-commit (>=3.1.1,<4.0.0)
Requires-Dist: pyodbc (>=4.0.35,<5.0.0)
Description-Content-Type: text/markdown

# How to contribute
After clone repository

## 1.- Install dependencies
```bash
poetry install
```

## 2.- Run test
```bash
make test
```

## 3.- Run lint
```bash
make lint && make isort
```

## How to publish new version
Once we have done a merge of our Pull request and we have the updated master branch we can generate a new version. For them we have 3 commands that change the version of our library and generate the corresponding tag so that the Bitbucket pipeline starts and publishes our library automatically.

```bash
make release-patch
```

```bash
make release-minor
```

```bash
make release-major
```

