Removing hyphens

Change-Id: I40eb4437eb92eed2bafbbe1b8f4da02bfe6aa5f3
This commit is contained in:
t2 2018-07-12 11:37:46 +02:00
parent 66b64a3f0e
commit 311d29cf4a
3 changed files with 7 additions and 7 deletions

View File

@ -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.

View File

@ -1,4 +1,4 @@
from brukeropusreader.opus_reader import opus_reader
from brukeropusreader import opus_reader
import sys
import argparse

View File

@ -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"
)