Metadata-Version: 2.1
Name: crossfire
Version: 0.1.0
Summary: crossfire: Download spatial data sets from crossfire project
Home-page: https://fogocruzado.org.br/
Author: Felipe Barros
Author-email: felipe.b4rros@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Dist: DateTime (>=4.3,<5.0)
Requires-Dist: geopandas (>=0.10.1,<0.11.0)
Requires-Dist: pandas (>=1.3.3,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Requires-Dist: python-decouple (>=3.5,<4.0)
Requires-Dist: requests (>=2.26.0,<3.0.0)
Project-URL: Repository, https://github.com/voltdatalab/crossfire
Description-Content-Type: text/markdown

# Fogo cruzado python API

Este é um módulo em construção para acessar a API do projeto [fogo cruzadp](fogocruzado.org.br) direto do python.

Por questões de segurança, adicionem o email e a senha de acesso em u arquivo `.env` na pasta do projeto, da seguinte forma (ver [env-example](../env-example):

```
FOGO_CRUZADO_EMAIL=usuario@host.com
FOGO_CRUZADO_PASSWORD=password
```

Este projeto usa o python [poetry]() para gestão de dependencias. Para executar os testes:

```
poetry run python -m unittest discover -s ./Python/
```

## Contribuindo:
Add dependencies:

1. fork and clone the repo;
2. Create venv `.crossfire`;
3. Install and start poetry in root folder ;

```buildoutcfg
poetry add package
```

