fix doc typo
[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  Merlijn van Deen
25
26 * 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 * better unicode handling
29
30 0.8  2011-04-27  Paul Kienzle
31
32 * initial release
33
34 Maintenance
35 -----------
36
37 When a new version of the package is ready, increment __version__
38 in igor.py and enter::
39
40     $ python setup.py sdist upload
41
42 This will place a new version on pypi.
43