648ca6499a8fb548438a3e287f2de2a15ffe7382
[igor.git] / README.rst
1 Igor.py
2 =======
3
4 :Author: Paul Kienzle <paul.kienzle@nist.gov>
5 :License: This program is public domain
6
7 Read Igor Pro files from python.
8
9 Install
10 -------
11
12 Using pip::
13
14     $ pip install igor.py
15
16 Using source, download and expand the source tree, change to the source
17 directory and type::
18
19     $ python setup.py install
20
21 Change History
22 --------------
23
24 0.9  2011-10-14
25
26 * access access to data object using f.name in addition to f['name'] and f[i]
27 * allow a data object to be used directly as an array, e.g., numpy.sum(f.name)
28
29 0.8  2011-04-27
30
31 * initial release
32
33 Maintenance
34 -----------
35
36 When a new version of the package is ready, increment __version__
37 in igor.py and enter::
38
39     $ python setup.py sdist upload
40
41 This will place a new version on pypi.
42