Skip to content

Commit

Permalink
Fixes #62 - pip install from local source was failing due to submodul…
Browse files Browse the repository at this point in the history
…e imports
  • Loading branch information
Jeff Fischer committed May 15, 2020
1 parent 51b6953 commit 6287241
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions dataworkspaces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,24 @@
* commands - implementations of the command line commands
* dws - command line interface and option parsing
* errors - exception classes
* resoures - implementations of the different resource types
* resources - implementations of the different resource types
* utils - common utilities
* workspace - core APIs for dataworkspaces internals, including Workspace,
Resource, and the various mixins that represent different
capabilities.
Submodules are not imported by default, due to external dependencies
(e.g. click or specific frameworks required by submodules under
dataworkspaces.kits). Just import the APIs you need directly. For
example::
from dataworkspaces import lineage
or::
from dataworkspaces.lineage import LineageBuilder
"""

__version__ = "1.4.0alpha"

from . import api
from . import backends
from . import commands
from . import dws
from . import errors
from . import kits
from . import lineage
from . import resources
from . import utils
from . import workspace

0 comments on commit 6287241

Please sign in to comment.