justanotherpackage 0.1.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: justanotherpackage
3
+ Version: 0.1.0
4
+ Summary: UNKNOWN
5
+ Home-page: UNKNOWN
6
+ License: UNKNOWN
7
+ Platform: UNKNOWN
8
+ Requires-Python: >=3.6
9
+
10
+ UNKNOWN
11
+
@@ -0,0 +1,2 @@
1
+ # __init__.py
2
+ from .core import greet, farewell
@@ -0,0 +1,6 @@
1
+ # core.py
2
+ def greet(name):
3
+ return f"Hello, {name}!"
4
+
5
+ def farewell(name):
6
+ return f"Goodbye, {name}!"
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: justanotherpackage
3
+ Version: 0.1.0
4
+ Summary: UNKNOWN
5
+ Home-page: UNKNOWN
6
+ License: UNKNOWN
7
+ Platform: UNKNOWN
8
+ Requires-Python: >=3.6
9
+
10
+ UNKNOWN
11
+
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ justanotherpackage/__init__.py
3
+ justanotherpackage/core.py
4
+ justanotherpackage.egg-info/PKG-INFO
5
+ justanotherpackage.egg-info/SOURCES.txt
6
+ justanotherpackage.egg-info/dependency_links.txt
7
+ justanotherpackage.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ justanotherpackage
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,8 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="justanotherpackage",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ python_requires=">=3.6",
8
+ )