Metadata-Version: 2.2
Name: PyMetaFile
Version: 0.1.0
Summary: A library for extracting metadata from files
Home-page: https://github.com/darioajr/pyfilemeta
Author: Dario Alves Junior
Author-email: darioajr@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.1
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"

# PyMetaFile
pyfilemeta é uma biblioteca Python leve para extração de metadados de arquivos, incluindo tamanho, datas de criação e modificação, tipo MIME e hashes (MD5, SHA256). Ideal para verificação de integridade e organização de arquivos. 🚀

## Bulld local

### Execute tests
```bash
pip install pytest
pytest
```

### Install tools
```bash
pip install build twine
```

### Build the package
```bash
python -m build
```

### Test install on PyPI
```bash
twine upload --repository testpypi dist/*
```
(Go to: https://test.pypi.org to test the installation)


## How to use this package
```bash
pip install PyMetaFile
``` 
