aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 99c8c1f9c57c0c7689a878b9115c56bbcc10f963 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tool.poetry]
name = "colo"
version = "0.1.0"
description = "A simple script to print out the 256 terminal colors in various formats"
authors = ["terminaldweller <thabogre@gmail.com>"]
license = "GPL3"
readme = "README.md"
homepage = "https://github.com/terminaldweller/colo"
repository = "https://github.com/terminaldweller/colo"
keywords = ["terminal", "color"]
classifiers = [
  "Environment :: Console",
]
include = [
  "LICENSE",
]
packages = [
{include = "colo"}
]

[tool.poetry.scripts]
colo = "colo.colo:colo"

[tool.poetry.dependencies]
python = "^3.8"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"