diff --git a/README.md b/README.md index 0bc4831..792f165 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Bruker OPUS Reader ## Introduction -The bruker-opus-reader Python package enables reading the binary OPUS files generated by Bruker spectrometers. +The brukeropusreader Python package enables reading the binary OPUS files generated by Bruker spectrometers. ## Usage Run the function brukeropusreader.opus_reader to read OPUS files. @@ -30,8 +30,8 @@ As Bruker's OPUS file format is not described openly, we do not know its exact s ## Contact For developer issues, please start a ticket in Github. -You can also write to the dev team directly at bruker-opus-reader-dev@qed.ai. -For other issues, please write to: bruker-opus-reader@qed.ai +You can also write to the dev team directly at brukeropusreader-dev@qed.ai. +For other issues, please write to: brukeropusreader@qed.ai ## License Copyright (c) 2018 [Quantitative Engineering Design](https://qed.ai). All rights reserved. diff --git a/example.py b/example.py index abd1bf6..f5edd7c 100644 --- a/example.py +++ b/example.py @@ -1,4 +1,4 @@ -from brukeropusreader.opus_reader import opus_reader +from brukeropusreader import opus_reader import sys import argparse diff --git a/setup.py b/setup.py index 225c3e5..ebcc6fc 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ from distutils.core import setup -setup(name='bruker-opus-reader', +setup(name='brukeropusreader', version='1.0', description='Bruker OPUS File Reader', author='QED', - author_email='bruker-opus-reader-dev@qed.ai', + author_email='brukeropusreader-dev@qed.ai', packages=['brukeropusreader'], python_requires=">=3", license="GPLv3", - url="https://github.com/qedsoftware/bruker-opus-reader" + url="https://github.com/qedsoftware/brukeropusreader" )