automated terminal push

This commit is contained in:
lenape
2025-06-29 15:24:39 +00:00
parent 39da429f57
commit 188d01c540
2 changed files with 10 additions and 0 deletions

2
hello-pkg/__init__.py Normal file
View File

@@ -0,0 +1,2 @@
def greet():
return "Hello, CodeArtifact!"

8
setup.py Normal file
View File

@@ -0,0 +1,8 @@
from setuptools import setup, find_packages
setup(
name="hello-codeartifact",
version="0.1.0",
packages=find_packages(),
description="A helloworld PyPI package for CodeArtifact demo",
)