Creating a Python Package Using Setuptools
from setuptools import setup
setup(name="packageharry",
version="0.3",
description="This is code with harry package",
long_description = "This is a very very long description",
author="Harry",
packages=['packageharry'],
install_requires=[])
class Achha:
def __init__(self):
print("Constructor ban gaya")
def achhafunc(self, number):
print("This is a function")
return number
Comments
Post a Comment