Metadata-Version: 2.4
Name: uniconpy
Version: 1.0.0
Summary: Pacote para a conversão de unidades de massa, temperatura e volume
Project-URL: Homepage, https://github.com/seu_pacote
Project-URL: Documentation, https://github.com/seu_pacote/docs
Author-email: matcomp <projeto@matcomp.com.br>
License: MIT License
        
        Copyright (c) 2025 Matcomp
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE.txt
Keywords: conversão,massa,temperatura
Requires-Python: >=3.8
Description-Content-Type: text/markdown

﻿# uniconpy

Pacote Python para conversão de unidades de medida, como temperatura, área e volume. Desenvolvido com foco em aplicações educacionais e computacionais, o pacote oferece funções simples e intuitivas para uso em projetos científicos, acadêmicos ou do dia a dia.

  

## Instalação

Você pode instalar o pacote diretamente do PyPI com o seguinte comando:

```python
pip install conversao_unidades
```

Caso esteja desenvolvendo localmente, é possível instalar utilizando:

```python
pip install .
```

  

## Exemplos de Uso

```python

import uniconpy as uc

#Conversão de temperatura
print(uc.temperatura.celsius_para_fahrenheit(25)) # Saída: 77.0

#Conversão de área
print(area.metros_quadrados_para_hectares(10000)) # Saída: 1.0

#Conversão de volume
print(volume.litros_para_metros_cubicos(1000)) # Saída: 1.0
```

## Documentação

A documentação completa, incluindo tutoriais e instruções detalhadas, está disponível no diretório `docs/`:

  

## Requisitos

- Python >= 3.8

- Nenhuma dependência externa

  

## Licença

Distribuído sob a licença MIT. Isso significa que você pode utilizar, modificar e distribuir o pacote livremente, desde que mantenha os créditos ao autor original. Para mais informações, consulte o arquivo [LICENSE.txt](LICENSE.txt).

  

## Contato

Autor: Matcomp

Email: projeto@matcomp.com.br

  

**Obs:** Projeto desenvolvido como parte do curso "Criação de Pacotes em Python"
