tiramisu_cmdline_parser 0.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ # Copyright (C) 2018-2019 Team tiramisu (see AUTHORS for all contributors)
2
+ #
3
+ # This program is free software: you can redistribute it and/or modify it
4
+ # under the terms of the GNU Lesser General Public License as published by the
5
+ # Free Software Foundation, either version 3 of the License, or (at your
6
+ # option) any later version.
7
+ #
8
+ # This program is distributed in the hope that it will be useful, but WITHOUT
9
+ # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10
+ # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11
+ # details.
12
+ #
13
+ # You should have received a copy of the GNU Lesser General Public License
14
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
+ from typing import Union, List, Dict, Tuple, Optional, Any
16
+
17
+ try:
18
+ from .api import TiramisuCmdlineParser
19
+ except ImportError as err:
20
+ import warnings
21
+
22
+ warnings.warn("cannot not import TiramisuCmdlineParser {err}", ImportWarning)
23
+ TiramisuCmdlineParser = None
24
+
25
+ __version__ = "0.5"
26
+ __all__ = ("TiramisuCmdlineParser",)