App skeleton, setuptools and versioning

This commit is contained in:
Mark Qvist 2021-04-08 16:29:43 +02:00
parent 471cba316a
commit 3dcd9f5c30
8 changed files with 2570 additions and 5 deletions

5
nomadnet/vendor/__init__.py vendored Normal file
View file

@ -0,0 +1,5 @@
import os
import glob
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]