Metadata-Version: 2.1
Name: pacote-matrizes
Version: 0.0.1
Summary: A package for summing rows and columns in Pandas DataFrames
Home-page: https://github.com/woodfabio/DIO-Criando-um-pacote-com-Python
Author: Fábio Wood
Author-email: fabio.wood.rs@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# pacote_matrizes

This Python package provides two simple functions for calculating the sum of numbers in a Pandas DataFrame, either by column or by row.

## Features

- **`sum_column(matrix, column_index)`**: Calculates the sum of numbers in the column at the specified index.
- **`sum_row(matrix, row_index)`**: Calculates the sum of numbers in the row at the specified index.

## Installation

To install this package locally, clone the repository and run the following command in the package root directory (where `setup.py` is located):

```bash
pip install .
```
