Metadata-Version: 2.4
Name: fulltrader
Version: 0.1.0
Summary: Pacote FullTrader para disponibilizar dados (inicialmente Hello World) com estrutura pronta para evoluir.
Project-URL: Homepage, https://example.com/fulltrader
Project-URL: Source, https://example.com/fulltrader/repo
Author-email: FullTrader <data-teams@fulltrader.com>
License: MIT License
        
        Copyright (c) 2025 FullTrader
        
        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
Keywords: api,dados,data,fulltrader
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Provides-Extra: dev
Requires-Dist: build>=1.2.1; extra == 'dev'
Requires-Dist: mypy>=1.10.0; extra == 'dev'
Requires-Dist: pytest>=7; extra == 'dev'
Requires-Dist: ruff>=0.5.0; extra == 'dev'
Requires-Dist: twine>=5.1.1; extra == 'dev'
Description-Content-Type: text/markdown

# fulltrader

Pacote Python para disponibilizar dados da FullTrader. Nesta primeira versão, entregamos um "Hello World" com uma estrutura robusta, pronta para evoluir para consultas a banco de dados e APIs internas.

## Instalação (após publicar no PyPI)

```bash
pip install fulltrader
```

## Uso (API)

```python
from fulltrader import hello

print(hello())          # "Hello, FullTrader!"
print(hello("Você"))   # "Hello, Você!"
```

## Uso (CLI)

```bash
fulltrader --name "FullTrader"
```

## Desenvolvimento

Requisitos: Python 3.9+

```bash
# Instalar dependências de desenvolvimento
python -m pip install -U pip
python -m pip install -e .[dev]

# Testes
pytest

# Lint (opcional)
ruff check

# Build do pacote
python -m build
```

## Publicação

- TestPyPI (recomendado primeiro):

```bash
python -m twine upload --repository testpypi dist/*
```

- PyPI oficial:

```bash
python -m twine upload dist/*
```

Certifique-se de ter configurado `~/.pypirc` com suas credenciais.

## Estrutura

- `src/fulltrader/` código fonte (layout src)
  - `use_cases/` casos de uso (ex.: `hello`)
  - `core/shared/` utilitários e contratos compartilhados
  - `infra/` camadas de integração (DB, APIs) – a serem implementadas
  - `cli.py` ponto de entrada da linha de comando
- `tests/` testes unitários

Licença: MIT
