20 lines
464 B
TOML
20 lines
464 B
TOML
|
[tool.poetry]
|
||
|
name = "elfish-tools"
|
||
|
version = "0.0.1"
|
||
|
description = "Tools for handling fish data from the 1993 game EL-Fish."
|
||
|
authors = ["Josh Washburne <josh@jodh.us>"]
|
||
|
readme = "README.md"
|
||
|
packages = [{include = "elfish", from = "src"}]
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = ">=3.10"
|
||
|
|
||
|
[tool.poetry.group.dev.dependencies]
|
||
|
pylint = ">=3.0.3"
|
||
|
black = ">=24.1.1"
|
||
|
mypy = ">=1.8.0"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|