1
Fork 0
mirror of https://github.com/Steffo99/flyingsnake.git synced 2024-10-16 14:37:34 +00:00
flyingsnake/pyproject.toml

42 lines
1.2 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "flyingsnake"
2023-03-06 22:57:22 +00:00
version = "3.0.0"
description = "A Terraria world map renderer"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+"
readme = "README.md"
homepage = "https://github.com/Steffo99/flyingsnake"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU Affero General Public License v3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics",
"Typing :: Typed"
]
# Library dependencies
[tool.poetry.dependencies]
2023-03-06 22:57:22 +00:00
python = "^3.6.2"
click = "^7.0"
2023-03-06 22:57:22 +00:00
lihzahrd = "^3.0.1"
"Pillow" = "^6.1.0"
# Development dependencies
[tool.poetry.dev-dependencies]
# Optional dependencies
[tool.poetry.extras]
# Scripts
[tool.poetry.scripts]
flyingsnake = 'flyingsnake.__main__:flyingsnake'
# Used build system
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"