Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added mihirbhaiOP/LICENSE.txt
Empty file.
2 changes: 2 additions & 0 deletions mihirbhaiOP/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Test package to print the passed string
Mihir bhai OP
Empty file.
2 changes: 2 additions & 0 deletions mihirbhaiOP/build/lib/examplePackage/oneMoreScript.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def printThis(string):
print(string)
4 changes: 4 additions & 0 deletions mihirbhaiOP/build/lib/examplePackage/testprinter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from examplePackage.oneMoreScript import printThis

def printThis2(string):
printThis(string)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions mihirbhaiOP/examplePackage/subModule1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def printThis(string):
print(string)
4 changes: 4 additions & 0 deletions mihirbhaiOP/examplePackage/subModule2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from examplePackage.subModule1 import printThis

def printThis2(string):
printThis(string)
16 changes: 16 additions & 0 deletions mihirbhaiOP/examplePackage_kg1510.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Metadata-Version: 2.1
Name: examplePackage-kg1510
Version: 0.0.3
Summary: A small example package to print the passed string
Home-page: https://github.com/KG-1510/Project-CLIK
Author: Kushagra Gupta
Author-email: guptakushagra15.10@gmail.com
License: UNKNOWN
Description: # Test package to print the passed string
Mihir bhai OP
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
9 changes: 9 additions & 0 deletions mihirbhaiOP/examplePackage_kg1510.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
README.md
setup.py
examplePackage/__init__.py
examplePackage/oneMoreScript.py
examplePackage/testprinter.py
examplePackage_kg1510.egg-info/PKG-INFO
examplePackage_kg1510.egg-info/SOURCES.txt
examplePackage_kg1510.egg-info/dependency_links.txt
examplePackage_kg1510.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions mihirbhaiOP/examplePackage_kg1510.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
examplePackage
22 changes: 22 additions & 0 deletions mihirbhaiOP/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="examplePackage-kg1510", # Replace with your own username
version="0.0.3",
author="Kushagra Gupta",
author_email="guptakushagra15.10@gmail.com",
description="A small example package to print the passed string",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/KG-1510/Project-CLIK",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)