mirror of https://github.com/ekimekim/wubloader
Add a common package for common bits in multiple components
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…
Reference in New Issue