Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/radolan_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# -----------------------------------------------------------------------------
#!/usr/bin/env python

import sys

from wradvis import gui
import matplotlib
matplotlib.use('Qt5Agg')

if __name__ == '__main__':
gui.start(sys)
gui.start()
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/env python
# Copyright (c) 2016-2018, wradlib developers.
# Distributed under the MIT License. See LICENSE.txt for more info.


def setup_package():

from setuptools import setup, find_packages

metadata = dict(
name='wradvis',
version='0.1.0',
packages=find_packages(),
entry_points={
'gui_scripts': [
'wradvis = wradvis.gui:start'
]
},
)

setup(**metadata)


if __name__ == '__main__':
setup_package()
7 changes: 2 additions & 5 deletions wradvis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2016, wradlib Development Team. All Rights Reserved.
# Distributed under the MIT License. See LICENSE.txt for more info.
# -----------------------------------------------------------------------------
#!/usr/bin/env python
# Copyright (c) 2016-2018, wradlib developers.
# Distributed under the MIT License. See LICENSE.txt for more info.

from . import gui
7 changes: 2 additions & 5 deletions wradvis/config.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2016, wradlib Development Team. All Rights Reserved.
# Distributed under the MIT License. See LICENSE.txt for more info.
# -----------------------------------------------------------------------------
#!/usr/bin/env python
# Copyright (c) 2016-2018, wradlib developers.
# Distributed under the MIT License. See LICENSE.txt for more info.

"""
"""
Expand Down
Loading