#!/usr/bin/env python
#
# This file is for a manual install of python on windows
# If python is already present it should be detected by
# the windows installer and the nxs directory copied to
# the python site-packages directory
#
# On Linux the Makefile will also install python, but not
# using this file - instead it uses the automake python install bits
#
# To use this file type:
#
#        python setup.py install
#
from setuptools import setup
 
setup(name='NeXus', 
      version='4.4.1', 
      description='Python Bindings to libNeXus', 
      author='Paul Kienzle', 
      url="https://github.com/nexusformat/python-nxs",
      packages = ['nxs'], 
      test_suite="nxs.test",
      license='LGPLv2'
      ) 
