Metadata-Version: 2.4
Name: daten
Version: 0.1.1
Summary: Scaffold data science and ML projects with uv.
Project-URL: Homepage, https://github.com/henriquepmartins/daten
Project-URL: Repository, https://github.com/henriquepmartins/daten
Project-URL: Issues, https://github.com/henriquepmartins/daten/issues
License: MIT License
        
        Copyright (c) 2026 Henrique Pereira Martins
        
        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: cli,data-science,machine-learning,scaffolding,uv
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Code Generators
Requires-Python: >=3.10
Requires-Dist: questionary>=2.1.0
Requires-Dist: typer>=0.16.0
Provides-Extra: dev
Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
Requires-Dist: pytest>=8.3.5; extra == 'dev'
Description-Content-Type: text/markdown

# daten

CLI em Python para inicializar projetos de ciencia de dados e ML usando `uv`.

## Instalacao

```bash
uv tool install daten
```

No macOS com Homebrew, a distribuicao recomendada fica em um tap proprio:

```bash
brew install henriquepmartins/tap/daten
```

## Comandos

Se estiver desenvolvendo localmente:

```bash
uv run daten doctor
uv run daten init meu-projeto
```

## Templates

- `notebook`: ambiente para EDA, estudos e treinos simples.
- `production`: API de inferencia tabular com estrutura enxuta para uso real.

## Desenvolvimento

```bash
uv sync --extra dev
uv run pytest
uv build --no-sources
```

## Publicacao

- PyPI: veja [docs/RELEASING.md](docs/RELEASING.md)
- Homebrew tap: veja [homebrew-tap/README.md](homebrew-tap/README.md)
