Removing hyphens
Change-Id: I40eb4437eb92eed2bafbbe1b8f4da02bfe6aa5f3
This commit is contained in:
parent
66b64a3f0e
commit
311d29cf4a
|
@ -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.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from brukeropusreader.opus_reader import opus_reader
|
||||
from brukeropusreader import opus_reader
|
||||
|
||||
import sys
|
||||
import argparse
|
||||
|
|
6
setup.py
6
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"
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue