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 +11 -0
- hanifx-0.1/hanifx.egg-info/PKG-INFO +11 -0
- hanifx-0.1/hanifx.egg-info/SOURCES.txt +9 -0
- hanifx-0.1/hanifx.egg-info/dependency_links.txt +1 -0
- hanifx-0.1/hanifx.egg-info/top_level.txt +1 -0
- hanifx-0.1/my_simple_package/__init__.py +0 -0
- hanifx-0.1/my_simple_package/main.py +1 -0
- hanifx-0.1/my_simple_package/my_code.py +1 -0
- hanifx-0.1/my_simple_package/setup.py +11 -0
- hanifx-0.1/setup.cfg +4 -0
- hanifx-0.1/setup.py +18 -0
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 @@
|
|
|
1
|
+
|
|
@@ -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!')
|
hanifx-0.1/setup.cfg
ADDED
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
|
+
|