Coverage for ezdag/__init__.py: 77.8%

9 statements  

« prev     ^ index     » next       coverage.py v7.6.4, created at 2024-10-29 15:59 -0700

1# Copyright (C) 2022 Patrick Godwin 

2# 

3# This Source Code Form is subject to the terms of the Mozilla Public License, v2.0. 

4# If a copy of the MPL was not distributed with this file, You can obtain one at 

5# <https://mozilla.org/MPL/2.0/>. 

6# 

7# SPDX-License-Identifier: MPL-2.0 

8 

9from .dags import DAG as DAG 

10from .layers import Layer as Layer 

11from .layers import Node as Node 

12from .options import Argument as Argument 

13from .options import Option as Option 

14 

15try: 

16 from ._version import version as __version__ 

17except ModuleNotFoundError: # development mode 

18 __version__ = ""