2862c320cae20188bb0655ecb600e16084fd296c
[igor.git] / setup.py
1 # Copyright (C) 2011-2012 Paul Kienzle <pkienzle@nist.gov>
2 #                         W. Trevor King <wking@tremily.us>
3 #
4 # This file is part of igor.
5 #
6 # igor is free software: you can redistribute it and/or modify it under the
7 # terms of the GNU Lesser General Public License as published by the Free
8 # Software Foundation, either version 3 of the License, or (at your option) any
9 # later version.
10 #
11 # igor is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
14 # details.
15 #
16 # You should have received a copy of the GNU Lesser General Public License
17 # along with igor.  If not, see <http://www.gnu.org/licenses/>.
18
19 "igor: interface for reading binary IGOR files."
20
21 from distutils.core import setup
22 import os.path
23
24 from igor import __version__
25
26
27 package_name = 'igor'
28 _this_dir = os.path.dirname(__file__)
29
30 setup(name=package_name,
31       version=__version__,
32       maintainer='W. Trevor King',
33       maintainer_email='wking@tremily.us',
34       url='http://blog.tremily.us/posts/%s/'.format(package_name),
35       download_url='http://git.tremily.us/?p={}.git;a=snapshot;h=v{};sf=tgz'.format(package_name, __version__),
36       license='GNU General Public License (GPL)',
37       platforms=['all'],
38       description=__doc__,
39       long_description=open(os.path.join(_this_dir, 'README'), 'r').read(),
40       classifiers=[
41         'Development Status :: 2 - Pre-Alpha',
42         'Environment :: Console',
43         'Intended Audience :: Developers',
44         'Intended Audience :: Science/Research',
45         'Operating System :: OS Independent',
46         'License :: OSI Approved :: GNU General Public License (GPL)',
47         'Programming Language :: Python',
48         'Programming Language :: Python :: 2.7',
49         'Programming Language :: Python :: 3.2',
50         'Topic :: Scientific/Engineering',
51         'Topic :: Software Development :: Libraries :: Python Modules',
52         ],
53       packages=[
54         'igor',
55         'igor.record',
56         ],
57       scripts=[
58         'bin/igorbinarywave.py',
59         ],
60       provides=['igor (%s)' % __version__],
61       )