Skip to content

Commit

Permalink
put script entry points in __main__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Jul 2, 2020
1 parent 1cfe354 commit 1a95ada
Show file tree
Hide file tree
Showing 9 changed files with 258 additions and 302 deletions.
36 changes: 0 additions & 36 deletions PlotRXlocation.py

This file was deleted.

67 changes: 0 additions & 67 deletions PlotRinex.py

This file was deleted.

61 changes: 0 additions & 61 deletions ReadRinex.py

This file was deleted.

68 changes: 0 additions & 68 deletions TimeRinex.py

This file was deleted.

Empty file removed data/.ignore
Empty file.
53 changes: 0 additions & 53 deletions rnx2hdf5.py

This file was deleted.

17 changes: 6 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = georinex
version = 1.14.1
version = 1.15.0
author = Michael Hirsch, Ph.D.
author_email = [email protected]
description = Python RINEX 2/3 NAV/OBS reader with speed and simplicity.
Expand Down Expand Up @@ -30,12 +30,6 @@ python_requires = >= 3.6.2
include_package_data = True
zip_safe = False
packages = find:
scripts =
PlotRXlocation.py
PlotRinex.py
ReadRinex.py
TimeRinex.py
rnx2hdf5.py
install_requires =
python-dateutil
numpy
Expand All @@ -48,10 +42,11 @@ where=src

[options.entry_points]
console_scripts =
ReadRinex = ReadRinex:main
TimeRinex = TimeRinex:main
PlotRinex = PlotRinex:main
rnx2hdf5 = rnx2hdf5:main
georinex_read = georinex.__main__:georinex_read
georinex_time = georinex.__main__:georinex_time
georinex_plot = georinex.__main__:georinex_plot
georinex_loc = georinex.__main__:georinex_loc
rinex2hdf5 = georinex.__main__:rinex2hdf5

[options.extras_require]
tests =
Expand Down
Loading

0 comments on commit 1a95ada

Please sign in to comment.