-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated code for wxPython 4.0 (Phoenix) and some modern MPL issues.
- Loading branch information
1 parent
51e0150
commit fe1828a
Showing
5 changed files
with
265 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
02-25-2016 Chris Barker <[email protected]> | ||
* Release 2.2.0 | ||
* Assorted updated for wxPython >= 4.0 | ||
* Other updated for modern MPL (tested on '2.1.2') | ||
|
||
02-25-2016 Chris Barker <[email protected]> | ||
* re-structured to have simpler setup.py and stucture | ||
* added setuptools to allow develop mode. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ http://agni.phys.iit.edu/~kmcivor/wxmpl/ | |
|
||
Ken has not maintained this for a while, and is no longer at IIT. | ||
|
||
WxMpl - Painless matplolib embedding for wxPython | ||
------------------------------------------------- | ||
WxMpl - Painless matplotlib embedding for wxPython | ||
-------------------------------------------------- | ||
|
||
The `wxmpl' module provides an matplotlib `FigureCanvas' with user-interaction | ||
features like point-under-cursor and zooming in on a selected area. | ||
|
@@ -24,51 +24,62 @@ subdirectory. | |
REQUIREMENTS | ||
------------ | ||
|
||
* Python 2.5 or later | ||
* Python 2.7 (would like to do a Py3 port, but not yet...) | ||
http://www.python.org | ||
|
||
* wxPython 2.6.3.2 or later | ||
* wxPython 4.0 or later | ||
http://www.wxpython.org | ||
|
||
* matplotlib 0.98.1 or later | ||
(It may work with earlier versions, but this is what it was tested on) | ||
|
||
* matplotlib 2.1 or later | ||
http://matplotlib.sourceforge.net | ||
|
||
(Also may work for eariler versions, but >= 0.9.8 anyway) | ||
|
||
PLATFORMS | ||
--------- | ||
|
||
WxMpl has been tested under Debian GNU/Linux 5.0 "Lenny" [wxPython 2.6.3.2] and Mac OS 10.5.6 [wxPython 2.8.9.1]. | ||
WxMpl has been tested under Windows 10 and Mac OS 10.11 [wxPython 4.0.0]. | ||
|
||
|
||
INSTALLATION | ||
------------ | ||
|
||
The Python Distutils system provides packaging, compilation, and installation | ||
The Python setuptools and pip system provides packaging, compilation, and installation | ||
for wxmpl. | ||
|
||
To install, execute the following command as superuser: | ||
# python setup.py install [OPTIONS] | ||
To install, execute the following command as superuser:: | ||
|
||
$ python setup.py install [OPTIONS] | ||
|
||
Or: | ||
|
||
$ pip install ./ | ||
|
||
For more information about installation options, execute the following | ||
command: | ||
> python setup.py install --help | ||
|
||
For information about other Distutils commands, execute the following command: | ||
For information about other setuptools commands, execute the following command: | ||
> python setup.py install --help-commands | ||
|
||
|
||
AVAILABILITY | ||
------------ | ||
|
||
There is no website for WxMpl yet, so your best bet is to bug Ken. | ||
|
||
WxMpl's subversion repository is http://svn.csrri.iit.edu/mr-software/wxmpl/ | ||
Project curently being manged on gitHub here: | ||
|
||
https://github.com/NOAA-ORR-ERD/wxmpl | ||
|
||
AUTHOR | ||
------ | ||
|
||
WxMpl was written by Ken McIvor <[email protected]> | ||
WxMpl was written by: Ken McIvor <[email protected]> | ||
|
||
Contirbutions from: Carlo Segre <[email protected]> | ||
|
||
Currently maintained by: Chris Barker <[email protected]> | ||
|
||
|
||
COPYRIGHT & LICENSE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.