fix doc typo
[igor.git] / setup.py
1 #!/usr/bin/env python
2 import sys
3 from distutils.core import setup
4 import igor
5
6 if len(sys.argv) == 1:
7     sys.argv.append('install')
8
9 # README.rst is only needed to upload the package;
10 # it isn't needed for download and install.
11 try:
12     long_description = open('README.rst').read()
13 except:
14     long_description = None
15 dist = setup(
16         name = 'igor.py',
17         version = igor.__version__,
18         author='Paul Kienzle',
19         author_email='paul.kienzle@nist.gov',
20         url='https://github.com/reflectometry/igor.py',
21         description='Read Igor Pro files from python',
22         long_description=long_description,
23         classifiers=[
24             'Development Status :: 4 - Beta',
25             'Environment :: Console',
26             'Intended Audience :: Science/Research',
27             'License :: Public Domain',
28             'Operating System :: OS Independent',
29             'Programming Language :: Python',
30             ],
31         py_modules = ['igor'],
32         #data_files = ['README.rst'],
33 )
34
35 # End of file
36