1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#!/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'
)
|