-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
26 lines (24 loc) · 992 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2014 Bryant E. McDonnell
#
# Licensed under the terms of the BSD2 License
# See LICENSE.txt for details
# -----------------------------------------------------------------------------
"""Python Wrapper for Stormwater Management Model (SWMM5)."""
# Local imports
from pyswmm.links import Link, Links
from pyswmm.nodes import Node, Nodes
from pyswmm.simulation import Simulation
from pyswmm.subcatchments import Subcatchment, Subcatchments
from pyswmm.system import SystemStats
VERSION_INFO = (0, 4, 8)
__version__ = '.'.join(map(str, VERSION_INFO))
__swmm_version__ = '5.2.0.dev3'
__author__ = 'Bryant E. McDonnell (EmNet LLC) - [email protected]'
__copyright__ = 'Copyright (c) 2016 Bryant E. McDonnell (See AUTHORS)'
__licence__ = 'BSD2'
__all__ = [
Link, Links, Node, Nodes, Subcatchment, Subcatchments, Simulation,
SystemStats
]