File: plotplugin.py

package info (click to toggle)
plotpy 2.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 13,364 kB
  • sloc: python: 37,833; cpp: 2,005; sh: 32; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 363 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- coding: utf-8 -*-
#
# Licensed under the terms of the BSD 3-Clause
# (see plotpy/LICENSE for details)

"""
plotplugin
==========

A plotpy plot widget plugin for Qt Designer
"""

from plotpy.widgets.qtdesigner import create_qtdesigner_plugin

Plugin = create_qtdesigner_plugin(
    "plotpy", "plotpy.plot", "PlotWidget", icon="curve.png"
)