Bootstrap SMC

This commit is contained in:
Luke Murphy
2020-06-30 01:53:17 +02:00
commit fda8aa0229
14 changed files with 855 additions and 0 deletions

View File

@ -0,0 +1,12 @@
"""simple-message-channels module."""
try:
import pkg_resources
except ImportError:
pass
try:
__version__ = pkg_resources.get_distribution('simple-message-channels').version
except Exception:
__version__ = 'unknown'