Coverage for sources/mimeogram/__init__.py: 89%

18 statements  

« prev     ^ index     » next       coverage.py v7.8.2, created at 2025-06-07 04:07 +0000

1# vim: set filetype=python fileencoding=utf-8: 

2# -*- coding: utf-8 -*- 

3 

4#============================================================================# 

5# # 

6# Licensed under the Apache License, Version 2.0 (the "License"); # 

7# you may not use this file except in compliance with the License. # 

8# You may obtain a copy of the License at # 

9# # 

10# http://www.apache.org/licenses/LICENSE-2.0 # 

11# # 

12# Unless required by applicable law or agreed to in writing, software # 

13# distributed under the License is distributed on an "AS IS" BASIS, # 

14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # 

15# See the License for the specific language governing permissions and # 

16# limitations under the License. # 

17# # 

18#============================================================================# 

19 

20 

21''' Exchange of file collections with LLMs. 

22 

23 A toolkit for exchanging collections of files with Large Language Models 

24 (LLMs). Mimeogram bundles multiple files into a single clipboard-ready 

25 document while preserving directory structure and metadata, making it ideal 

26 for code reviews, project sharing, and LLM interactions. 

27''' 

28 

29 

30from . import __ 

31from . import acquirers 

32from . import apply 

33from . import cli 

34from . import create 

35from . import differences 

36from . import display 

37from . import edit 

38from . import formatters 

39from . import interactions 

40from . import parsers 

41from . import updaters 

42# --- BEGIN: Injected by Copier --- 

43from . import exceptions 

44# --- END: Injected by Copier --- 

45 

46# TODO: Export various module contents. 

47 

48 

49__version__ = '1.3' 

50 

51 

52def main( ): 

53 ''' Entrypoint. ''' 

54 from .cli import execute 

55 execute( ) 

56 

57 

58# TODO: Also reclassify package modules as concealed. 

59__.reclassify_modules_as_immutable( __name__ )