Files
nuzlocke-tracker/tools/import-pokedb/pyproject.toml
Julian Tabel 1aa67665ff Add Python tool scaffold for PokeDB data import
Set up tools/import-pokedb/ with CLI, JSON loader, and output models.
Replaces the Go/PokeAPI approach with local PokeDB.org JSON processing.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 09:49:51 +01:00

10 lines
248 B
TOML

[project]
name = "import-pokedb"
version = "0.1.0"
description = "Convert PokeDB.org JSON data exports into nuzlocke-tracker seed format"
requires-python = ">=3.12"
dependencies = []
[project.scripts]
import-pokedb = "import_pokedb.__main__:main"