Skip to content

Commit

Permalink
updated documentation and setup.py for github project link
Browse files Browse the repository at this point in the history
  • Loading branch information
ratal committed May 18, 2015
1 parent b8e9cac commit 0259872
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mdf4reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,9 +658,9 @@ def __init__(self, info, dataGroup, channelGroup, recordIDsize, byte_aligned=Tru
self.nBytes = info['CGBlock'][dataGroup][channelGroup]['cg_invalid_bytes']
self.bitCount = self.nBytes * 8
self.channelType = 0 # fixed length data
self.dataFormat = arrayformat4(self.signalDataType, self.bitCount)
self.dataFormat = str(self.nBytes) + 'V'
self.RecordFormat = ((self.name, convertName(self.name)), self.dataFormat)
self.Format = datatypeformat4(self.signalDataType, self.bitCount)
self.Format = str(self.nBytes) + 's'
self.CFormat = Struct(self.Format)
self.bitOffset = 0
self.byteOffset = info['CGBlock'][dataGroup][channelGroup]['cg_data_bytes']
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
long_description=long_description,

# The project's main homepage.
url='https://code.google.com/p/mdfreader',
url='https://github.com/ratal/mdfreader',

# Author details
author='Aymeric Rateau',
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', 'bitarray'],
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

0 comments on commit 0259872

Please sign in to comment.