Skip to content

Commit

Permalink
close #13, bump version, resolve install issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mef51 committed Oct 4, 2022
1 parent 8340385 commit 712824d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ Install Frbgui with

```pip install --user frbgui```

Oct 4 2022: Please note there are some install breaking issues, see [Issues](https://github.com/mef51/frbgui/issues) #10, #11, #12, #13. Cloning the entire repo and running from there is an appropriate workaround.

## Usage

Run from the command-line with the following command to start in your current working directory:
Expand Down
3 changes: 3 additions & 0 deletions frbgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1433,6 +1433,9 @@ def frbgui(filefilter=gdata['globfilter'],
dpg.start_dearpygui(primary_window='main') # blocks til closed
return gdata

def main(): # windows cli
frbgui(datadir=os.getcwd())

if __name__ == '__main__':
frbgui(
# datadir='B:\\dev\\frbgui\\SurveyFRB20121102A\\data\\simulated',
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def readme():

setuptools.setup(
name="frbgui",
version="0.9",
version="0.91",
author="Mohammed Chamma",
author_email="mchamma@uwo.ca",
description="GUI and utilities for processing Fast Radio Burst waterfalls",
Expand All @@ -30,5 +30,8 @@ def readme():
"Topic :: Scientific/Engineering :: Astronomy"
],
python_requires='>=3.6',
scripts=['bin/frbgui']
scripts=['bin/frbgui'],
entry_points={
'console_scripts': ['frbgui=frbgui:main']
}
)

0 comments on commit 712824d

Please sign in to comment.