1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 15:02:59 +00:00
fftcgtool/pyproject.toml

24 lines
570 B
TOML
Raw Permalink Normal View History

2022-07-18 14:13:18 +00:00
[tool.poetry]
2022-07-18 14:13:19 +00:00
authors = ["LDericher <40151420+ldericher@users.noreply.github.com>"]
description = "Card import tool for 'Final Fantasy TCG Complete' mod for the 'Tabletop Simulator' game"
license = "LICENSE"
2022-07-18 14:13:18 +00:00
name = "fftcgtool"
2022-08-16 12:50:02 +00:00
version = "0.2.1"
2022-07-18 14:13:18 +00:00
[tool.poetry.dependencies]
2022-07-18 14:13:19 +00:00
Pillow = "^9.2.0"
click = "^8.1.3"
2022-07-18 14:13:18 +00:00
python = "^3.9"
2022-07-18 14:13:19 +00:00
requests = "^2.28.1"
2022-07-18 14:13:18 +00:00
roman = "^3.3"
[tool.poetry.dev-dependencies]
2022-08-15 14:51:24 +00:00
pytest = "^5.2"
2022-07-18 14:13:18 +00:00
[tool.poetry.scripts]
fftcgtool = "fftcgtool.scripts.fftcgtool:main"
[build-system]
build-backend = "poetry.core.masonry.api"
2022-07-18 14:13:19 +00:00
requires = ["poetry-core>=1.0.0"]