-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
31 lines (24 loc) · 1.03 KB
/
__init__.py
File metadata and controls
31 lines (24 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
"""
plotpy
======
Based on `PythonQwt` (plotting widgets for Qt graphical user interfaces) and
on the scientific modules NumPy and SciPy, :mod:`plotpy` is a Python library
providing efficient 2D data-plotting features (curve/image visualization
and related tools) for interactive computing and signal/image processing
application development.
.. image:: images/panorama.png
External resources:
* Python Package Index: `PyPI`_
* Bug reports and feature requests: `GitHub`_
.. _PyPI: https://pypi.python.org/pypi/plotpy
.. _GitHub: https://github.com/PierreRaybaut/plotpy
"""
__version__ = "2.8.3"
__VERSION__ = tuple([int(number) for number in __version__.split(".")])
# --- Important note: DATAPATH and LOCALEPATH are used by guidata.configtools
# --- to retrieve data and translation files paths
#
# Dear (Debian, RPM, ...) package makers, please feel free to customize the
# following path to module's data (e.g. icons) and translations:
DATAPATH = LOCALEPATH = ""