package-type369 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_type369
3
+ Version: 0.1
4
+ Summary: A brief description of your package
5
+ Home-page: https://github.com/surajkhanal369/my_package
6
+ Author: Suraj Khanal
7
+ Author-email: skhanal205@gmail.com
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.1
2
+ Name: package_type369
3
+ Version: 0.1
4
+ Summary: A brief description of your package
5
+ Home-page: https://github.com/surajkhanal369/my_package
6
+ Author: Suraj Khanal
7
+ Author-email: skhanal205@gmail.com
@@ -0,0 +1,5 @@
1
+ setup.py
2
+ package_type369.egg-info/PKG-INFO
3
+ package_type369.egg-info/SOURCES.txt
4
+ package_type369.egg-info/dependency_links.txt
5
+ package_type369.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_type369', # 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='Suraj Khanal', # Your name
9
+ author_email='skhanal205@gmail.com',# Your email
10
+ description='A brief description of your package',
11
+ url='https://github.com/surajkhanal369/my_package', # Your project URL
12
+ )