Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit d4114db

Browse files
committed
[packaging] The __init__.py files are required to make Python treat directories containing the file as packages.
1 parent 0f5843f commit d4114db

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

cloudstate/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""
2+
Copyright 2020 Lightbend Inc.
3+
Licensed under the Apache License, Version 2.0.
4+
"""
5+
6+
from .version import __version__
7+
8+
__all__ = [
9+
'__version__',
10+
]

0 commit comments

Comments
 (0)