diff --git a/gongor/aegis.py b/gongor/aegis.py new file mode 100644 index 0000000..0ffae14 --- /dev/null +++ b/gongor/aegis.py @@ -0,0 +1,3 @@ +def generate(): + print("Generating...") + print("Done.") diff --git a/pyproject.toml b/pyproject.toml index b1a197d..9190ea9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,9 +6,12 @@ readme = "README.md" requires-python = ">=3.7" license = {file = "LICENSE.txt"} +[project.scripts] +aegis-generate = "gongor.aegis:generate" + [build-system] requires = ["setuptools >= 61.0.0"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] -where = ["gongor"] +include = ["gongor"]