myawesomepkg 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.1
2
+ Name: myawesomepkg
3
+ Version: 0.1.0
4
+ Summary: A simple greeting library
5
+ Author: Your Name
6
+ Requires-Python: >=3.6
@@ -0,0 +1 @@
1
+ from .core import say_hello
@@ -0,0 +1,2 @@
1
+ def say_hello(name):
2
+ return f"Hello, {name}!"
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.1
2
+ Name: myawesomepkg
3
+ Version: 0.1.0
4
+ Summary: A simple greeting library
5
+ Author: Your Name
6
+ Requires-Python: >=3.6
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ myawesomepkg/__init__.py
3
+ myawesomepkg/core.py
4
+ myawesomepkg.egg-info/PKG-INFO
5
+ myawesomepkg.egg-info/SOURCES.txt
6
+ myawesomepkg.egg-info/dependency_links.txt
7
+ myawesomepkg.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ myawesomepkg
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='myawesomepkg', # Change this to your library name
5
+ version='0.1.0',
6
+ author='Your Name', # Put your name here
7
+ description='A simple greeting library',
8
+ packages=find_packages(),
9
+ install_requires=[], # Add required libraries here, if any
10
+ python_requires='>=3.6',
11
+ )