From c47bbda4414e2265cb92a37ac4d0b731f3d7b19f Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Tue, 12 Jul 2022 04:43:05 +0430 Subject: initial commit --- pyproject.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..99c8c1f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,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 "] +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" -- cgit v1.2.3