package-agaba 0.1__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,7 @@
1
+ Metadata-Version: 2.1
2
+ Name: package_agaba
3
+ Version: 0.1
4
+ Summary: A brief description of your package
5
+ Home-page: https://github.com/joshua-agaba/my_package
6
+ Author: Joshua Agaba
7
+ Author-email: agabajoshua27@gmail.com
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.1
2
+ Name: package_agaba
3
+ Version: 0.1
4
+ Summary: A brief description of your package
5
+ Home-page: https://github.com/joshua-agaba/my_package
6
+ Author: Joshua Agaba
7
+ Author-email: agabajoshua27@gmail.com
@@ -0,0 +1,5 @@
1
+ setup.py
2
+ package_agaba.egg-info/PKG-INFO
3
+ package_agaba.egg-info/SOURCES.txt
4
+ package_agaba.egg-info/dependency_links.txt
5
+ package_agaba.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,12 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name= "package_agaba", #39;, # Your package name
5
+ version= "0.1", # Version number
6
+ packages=find_packages(), # Automatically find packages
7
+ install_requires=[], # List dependencies if any
8
+ author= "Joshua Agaba", # Your name
9
+ author_email= "agabajoshua27@gmail.com", #39;,# Your email
10
+ description= "A brief description of your package", #39;,
11
+ url= "https://github.com/joshua-agaba/my_package" #39;, # Your project URL
12
+ )