I have a single Python3 .py
module with a few dependencies (lockfile, python-daemon). Is there a simple way to package this with its' dependencies so that users do not need to download and install the other modules? An all included install is what I am trying to do.
I tried looking at setuptools, distribute, and distutils and ended up even more confused than when I started.
The simplest way I see often used is to put all your dependencies in a single file (usually named
requirements.txt
) and then you ask user to run the following command:And here is an example for the content of the file (https://github.com/cenkalti/pypi-notifier/blob/master/requirements.txt):