forked from treveradams/libpes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
29 lines (17 loc) · 721 Bytes
/
__init__.py
File metadata and controls
29 lines (17 loc) · 721 Bytes
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
27
28
29
"""General binary file parser.
Copyright (c) 2015 Jeroen F.J. Laros <J.F.J.Laros@lumc.nl>
Licensed under the MIT license, see the LICENSE file.
"""
from .bin_parser import BinReader, BinWriter
from .functions import BinReadFunctions, BinWriteFunctions
__version_info__ = ('0', '0', '12')
__version__ = '.'.join(__version_info__)
__author__ = 'Jeroen F.J. Laros'
__contact__ = 'J.F.J.Laros@lumc.nl'
__homepage__ = 'https://git.lumc.nl/j.f.j.laros/bin-parser'
usage = __doc__.split('\n\n\n')
def doc_split(func):
return func.__doc__.split("\n\n")[0]
def version(name):
return '{} version {}\n\nAuthor : {} <{}>\nHomepage : {}'.format(
name, __version__, __author__, __contact__, __homepage__)