Add a common package for common bits in multiple components

pull/2/head
Mike Lang 6 years ago
parent 4105c90e9f
commit a361ab7a63

@ -0,0 +1,3 @@
"""A place for common utilities between wubloader components"""

@ -0,0 +1,9 @@
from setuptools import setup
setup(
name = "wubloader-common",
version = "0.0.0",
py_modules = ["common.py"],
install_requires = [
],
)
Loading…
Cancel
Save