30 lines
916 B
TOML
30 lines
916 B
TOML
[tool.poetry]
|
|
name = "terminis"
|
|
version = "0.2.4.2"
|
|
description = "Tetris clone for terminal. Ideal for servers without GUI!"
|
|
authors = ["adrienmalin <41926238+adrienmalin@users.noreply.github.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/adrienmalin/Terminis"
|
|
keywords = ["Tetris", "terminal", "curses","beep"]
|
|
classifiers = [
|
|
"Environment :: Console :: Curses",
|
|
"Programming Language :: Python",
|
|
"Topic :: Games/Entertainment :: Puzzle Games",
|
|
"Topic :: Games/Entertainment :: Arcade",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Terminals",
|
|
"Topic :: System :: Systems Administration"
|
|
]
|
|
readme = "README.md"
|
|
include = ["music.sh"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=2.7"
|
|
windows-curses = {version = "^1.0", platform = "win32"}
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
terminis = 'terminis.terminis:main' |