hanifx 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.
hanifx-0.1/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: hanifx
3
+ Version: 0.1
4
+ Summary: A simple greeting package
5
+ Home-page: https://hanif-storess.weebly.com
6
+ Author: Hanif
7
+ Author-email: sajim4653@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.1
2
+ Name: hanifx
3
+ Version: 0.1
4
+ Summary: A simple greeting package
5
+ Home-page: https://hanif-storess.weebly.com
6
+ Author: Hanif
7
+ Author-email: sajim4653@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
@@ -0,0 +1,9 @@
1
+ setup.py
2
+ hanifx.egg-info/PKG-INFO
3
+ hanifx.egg-info/SOURCES.txt
4
+ hanifx.egg-info/dependency_links.txt
5
+ hanifx.egg-info/top_level.txt
6
+ my_simple_package/__init__.py
7
+ my_simple_package/main.py
8
+ my_simple_package/my_code.py
9
+ my_simple_package/setup.py
@@ -0,0 +1 @@
1
+ my_simple_package
File without changes
@@ -0,0 +1 @@
1
+ from my_code import greet; greet()
@@ -0,0 +1 @@
1
+ def greet(): print('Hello from hanifx!')
@@ -0,0 +1,11 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name='hanifx',
5
+ version='0.1',
6
+ py_modules=['my_code'],
7
+ description='A simple greeting package',
8
+ author='Hanif',
9
+ author_email='sajim4653@gmail.com',
10
+ url='https://hanif-storess.weebly.com',
11
+ )+
hanifx-0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
hanifx-0.1/setup.py ADDED
@@ -0,0 +1,18 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='hanifx',
5
+ version='0.1',
6
+ packages=find_packages(),
7
+ description='A simple greeting package',
8
+ author='Hanif',
9
+ author_email='sajim4653@gmail.com',
10
+ url='https://hanif-storess.weebly.com',
11
+ classifiers=[
12
+ 'Programming Language :: Python :: 3',
13
+ 'License :: OSI Approved :: MIT License',
14
+ 'Operating System :: OS Independent',
15
+ ],
16
+ python_requires='>=3.6',
17
+ )
18
+