Reputation: 865
I have created a folder in which I kept all my python files. I have added __init__.py
to that folder to create it as package. The main file is test.py in which I give input.
for example :
<filename>.py 10 20
Now, I have a package. I want to create installer from that package so that, other persons will download that package and install it as normal installation occurs in linux.
so that, after installation by typing test linux user should able to use my application.
example :
<filename> 10 20
How can I proceed to create such installer in linux for my package?
Upvotes: 0
Views: 331
Reputation: 6466
init.py
__init__.py
to be the initialisation script for a package.Upvotes: 2