Skip to content

Commit

Permalink
updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ratal committed May 11, 2015
1 parent c6ac0a6 commit b8e9cac
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
5 changes: 4 additions & 1 deletion mdf4reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
-------------------
- Python >2.6, >3.2 <http://www.python.org>
- Numpy >1.6 <http://numpy.scipy.org>
- zlib to uncompress data block if needed
- bitarray to parse bits in not aligned bytes
- Sympy to convert channels with formula if needed
- zlib to uncompress data block if needed
Attributes
--------------
Expand Down Expand Up @@ -737,6 +738,7 @@ class record(list):
loadInfo(info)
readSortedRecord(fid, pointer, channelList=None)
readRecordBuf(buf, channelList=None)
readBitarray(bita, channelList=None)
"""

def __init__(self, dataGroup, channelGroup):
Expand Down Expand Up @@ -961,6 +963,7 @@ def readBitarray(self, bita, channelList=None):
bitarray : stream
stream of bytes
channelList : List of str, optional
list of channel to read
Returns
--------
Expand Down
Binary file modified mdfreader.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions mdfreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- xlwt for the excel export (not existing for python3)
- openpyxl for the excel 2007 export
- scipy for the Matlab file conversion
- zlib to uncompress data block if needed
Attributes
--------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/development.html#single-sourcing-the-version
version='0.1.1',
version='0.1.2',

description='A Measured Data Format file parser',
long_description=long_description,
Expand Down Expand Up @@ -66,7 +66,7 @@
# project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/technical.html#install-requires-vs-requirements-files
install_requires=['numpy>=1.6', 'Sympy', 'bitstring'],
install_requires=['numpy>=1.6', 'Sympy', 'bitarray'],

# List additional groups of dependencies here (e.g. development dependencies).
# You can install these using the following syntax, for example:
Expand Down
6 changes: 3 additions & 3 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@

# General information about the project.
project = u'mdfreader'
copyright = u'2014, Aymeric Rateau'
copyright = u'2015, Aymeric Rateau'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.9'
version = '1.1'
# The full version, including alpha/beta/rc tags.
release = '0'
release = '1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit b8e9cac

Please sign in to comment.