diff options
author | terminaldweller <thabogre@gmail.com> | 2022-07-12 00:13:05 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-07-12 00:13:05 +0000 |
commit | c47bbda4414e2265cb92a37ac4d0b731f3d7b19f (patch) | |
tree | 83fa6569f1bb419c2ea168254a4f617a94b6aab5 /pyproject.toml | |
parent | Initial commit (diff) | |
download | colo-c47bbda4414e2265cb92a37ac4d0b731f3d7b19f.tar.gz colo-c47bbda4414e2265cb92a37ac4d0b731f3d7b19f.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | pyproject.toml | 31 |
1 files changed, 31 insertions, 0 deletions
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 <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" |