Metadata-Version: 2.1
Name: trab-devops-ci-cd-process
Version: 0.0.6
Summary: quadratic equation roots calculating package for devops course
Author-email: Ricardo Báfica Pontes <ricardo.bafica@gmail.com>
Project-URL: Homepage, https://github.com/ricobafica/trab-devops-ci-cd
Project-URL: Bug Tracker, https://github.com/ricobafica/trab-devops-ci-cd/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytest (==7.4.0)
Requires-Dist: flake8 (==6.0.0)
Requires-Dist: build (==0.10.0)
Requires-Dist: twine (==4.0.2)

# trab-devops-ci-cd

Final task repository of the Devops Practices discipline, data engineering course at Pucminas 2023

Respositorio do trabalho final da disciplina de Praticas Devops, curso de engenharia de dados da Pucminas 2023.

**********************************
Instructions for use in English:
**********************************
1. Import the package ‘trab-devops-ci-cd-process 0.0.5’ on the PYPI website: https://pypi.org/project/trab-devops-ci-cd-process/

2. Confirm that the package is available:
pip list

3. Run Python:
python

4. Import eq_segundo_grau code available in the package:
from bhaskara import eq_segundo_grau

Run coleta_coeficientes() function with the command below:
eq_segundo_grau.coleta_coeficientes()

**********************************
Instruções de uso em Português BR:
**********************************
1. Importe o pacote 'trab-devops-ci-cd-process 0.0.5' no site PYPI:
https://pypi.org/project/trab-devops-ci-cd-process/

2. Confirme que o pacote está disponivel:
pip list

3. Execute o python:
python

4. Importe o codigo 'eq_segundo_grau.py' disponibilizado no pacote:
from bhaskara import eq_segundo_grau  

5. Executo a função coleta_coeficientes() com o comando:
eq_segundo_grau.coleta_coeficientes()
