2013-09-12 06:01:52 +00:00
|
|
|
PyQtGraph
|
|
|
|
=========
|
|
|
|
|
|
|
|
A pure-Python graphics library for PyQt/PySide
|
2013-09-12 06:22:26 +00:00
|
|
|
|
2013-09-12 06:01:52 +00:00
|
|
|
Copyright 2012 Luke Campagnola, University of North Carolina at Chapel Hill
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
<http://www.pyqtgraph.org>
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Maintainer
|
|
|
|
----------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
* Luke Campagnola ('luke.campagnola@%s.com' % 'gmail')
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Contributors
|
|
|
|
------------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
* Megan Kratz
|
|
|
|
* Paul Manis
|
|
|
|
* Ingo Breßler
|
|
|
|
* Christian Gavin
|
|
|
|
* Michael Cristopher Hogg
|
|
|
|
* Ulrich Leutner
|
|
|
|
* Felix Schill
|
|
|
|
* Guillaume Poulin
|
2013-12-15 16:38:44 +00:00
|
|
|
* Antony Lee
|
2013-12-29 14:17:23 +00:00
|
|
|
* Mattias Põldaru
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Requirements
|
|
|
|
------------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
* PyQt 4.7+ or PySide
|
|
|
|
* python 2.6, 2.7, or 3.x
|
|
|
|
* numpy, scipy
|
|
|
|
* For 3D graphics: pyopengl
|
|
|
|
* Known to run on Windows, Linux, and Mac.
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Support
|
|
|
|
-------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
Post at the [mailing list / forum](https://groups.google.com/forum/?fromgroups#!forum/pyqtgraph)
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Installation Methods
|
|
|
|
--------------------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
* To use with a specific project, simply copy the pyqtgraph subdirectory
|
2013-12-29 14:17:23 +00:00
|
|
|
anywhere that is importable from your project. PyQtGraph may also be
|
|
|
|
used as a git subtree by cloning the git-core repository from github.
|
2013-09-12 06:22:26 +00:00
|
|
|
* To install system-wide from source distribution:
|
|
|
|
`$ python setup.py install`
|
|
|
|
* For instalation packages, see the website (pyqtgraph.org)
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
There are many examples; run `python -m pyqtgraph.examples` for a menu.
|
|
|
|
|
|
|
|
Some (incomplete) documentation exists at this time.
|
|
|
|
* Easiest place to get documentation is at <http://www.pyqtgraph.org/documentation>
|
|
|
|
* If you acquired this code as a .tar.gz file from the website, then you can also look in
|
2013-09-12 06:01:52 +00:00
|
|
|
doc/html.
|
2013-09-12 06:22:26 +00:00
|
|
|
* If you acquired this code via GitHub, then you can build the documentation using sphinx.
|
2013-09-12 06:01:52 +00:00
|
|
|
From the documentation directory, run:
|
|
|
|
`$ make html`
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
Please feel free to pester Luke or post to the forum if you need a specific
|
2013-12-29 14:17:23 +00:00
|
|
|
section of documentation to be expanded.
|