From 188d01c540b96f71be925f1f460557b939c1ead2 Mon Sep 17 00:00:00 2001 From: lenape Date: Sun, 29 Jun 2025 15:24:39 +0000 Subject: [PATCH] automated terminal push --- hello-pkg/__init__.py | 2 ++ setup.py | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 hello-pkg/__init__.py create mode 100644 setup.py diff --git a/hello-pkg/__init__.py b/hello-pkg/__init__.py new file mode 100644 index 0000000..64481b3 --- /dev/null +++ b/hello-pkg/__init__.py @@ -0,0 +1,2 @@ +def greet(): + return "Hello, CodeArtifact!" diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..37d1b97 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +from setuptools import setup, find_packages + +setup( + name="hello-codeartifact", + version="0.1.0", + packages=find_packages(), + description="A hello‑world PyPI package for CodeArtifact demo", +)