Get a working entry-point done.

It doesn't do anything, but we love water flowing through pipes.
This commit is contained in:
Eli Ribble 2023-11-02 21:26:40 -06:00
parent 2988a08109
commit 370c2a9e05
2 changed files with 7 additions and 1 deletions

3
gongor/aegis.py Normal file
View File

@ -0,0 +1,3 @@
def generate():
print("Generating...")
print("Done.")

View File

@ -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"]