Skip to content

Commit

Permalink
Merge pull request #125 from alurban/rename-print
Browse files Browse the repository at this point in the history
Rename omicron-print to complement Omicron
  • Loading branch information
Alex L. Urban authored Aug 5, 2020
2 parents 1e743d9 + 256e46c commit 42c2a51
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 682 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install:
script:
- "python -m flake8 --format='${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s' ."
- python -m pytest --verbose --cov --pyargs omicron
- python -m coverage run -a $(which omicron-print) --help
- python -m coverage run -a $(which omicron-show) --help
- python -m coverage run -a $(which omicron-process) --help
- python -m coverage run -a $(which omicron-status) --help
- python -m coverage run -a $(which omicron-hdf5-merge) --help
Expand Down
674 changes: 0 additions & 674 deletions COPYING

This file was deleted.

2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include LICENSE COPYING README.md MANIFEST.in
include LICENSE README.md MANIFEST.in
include versioneer.py
include omicron/_version.py
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ conda install -c conda-forge pyomicron

## License

PyOmicron is released under the GNU General Public License v3.0, see [here](https://choosealicense.com/licenses/gpl-3.0/) for a description of this license, or see [COPYING](https://github.com/gwpy/pyomicron/blob/master/COPYING) for the full text.
PyOmicron is released under the GNU General Public License v3.0, see [here](https://choosealicense.com/licenses/gpl-3.0/) for a description of this license, or see [LICENSE](https://github.com/gwpy/pyomicron/blob/master/LICENSE) for the full text.
2 changes: 1 addition & 1 deletion omicron/cli/print.py → omicron/cli/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def create_parser():
dest='mode',
title='run modes',
description='What kind of data you want to print, run '
'`omicron-print {mode} --help` for detailed help',
'`omicron-show {mode} --help` for detailed help',
)

# -- common options
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[metadata]
license_files = COPYING

[aliases]
test = pytest

Expand All @@ -18,6 +15,9 @@ omit =
omicron/tests/*
omicron/_version.py

[metadata]
license_file = LICENSE

[flake8]
exclude =
__pycache__,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
entry_points={
"console_scripts": [
"omicron-hdf5-merge = omicron.cli.hdf5_merge:main",
"omicron-print = omicron.cli.print:main",
"omicron-show = omicron.cli.show:main",
"omicron-process = omicron.cli.process:main",
"omicron-root-merge = omicron.cli.root_merge:main",
"omicron-status = omicron.cli.status:main",
Expand Down

0 comments on commit 42c2a51

Please sign in to comment.