I am new to python and have been playing around with it for a while. I have written two python modules: gapbuffer and gapbuffertests. The question I have is - to release this publically for use do I just release the gapbuffer.py module file standalone or is there a Java .jar equivalent?
Thanks, Aly
Setuptools is the standard packaging solution for Python. With setuptools, you can create eggs, which are the near-equivalent of jars. If your package is open source, you can also have it listed on PyPI (setuptools includes support for that) so that it can be installed with a command like pip install gapbuffer
.