Single python file distribution: module or package?
- by DanielSank
Suppose I have a useful python function or class (or whatever) called useful_thing which exists in a single file. There are essentialy two ways to organize the source tree. The first way uses a single module:
- setup.py
- README.rst
- ...etc...
- foo.py
where useful_thing is defined in foo.py. The second strategy is to make a package:
-…