From e5c5b104207803efef4ef4e593f0b6858d6331aa Mon Sep 17 00:00:00 2001 From: Paco Hope Date: Sat, 6 Aug 2022 22:13:30 -0400 Subject: [PATCH] added CLI identifier and setuptools --- pyproject.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 35bdcc7..4fd6aec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,4 +17,11 @@ classifiers = [ [project.urls] "Homepage" = "https://git.paco.to/tfscript/tfscript" -"Bug Tracker" = "https://git.paco.to/tfscript/tfscript/issues" \ No newline at end of file +"Bug Tracker" = "https://git.paco.to/tfscript/tfscript/issues" + +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project.scripts] +tfscript = "tfscript.cli:main"