Files
hello-codeartifact/setup.py

9 lines
204 B
Python
Raw Normal View History

2025-06-29 15:24:39 +00:00
from setuptools import setup, find_packages
setup(
name="hello-codeartifact",
2025-06-29 21:16:05 +00:00
version="0.1.2",
2025-06-29 15:24:39 +00:00
packages=find_packages(),
2025-06-29 19:09:11 +00:00
description="A hello-world PyPI package for CodeArtifact demo",
2025-06-29 15:24:39 +00:00
)