#!/usr/bin/env python
# setup.py
# 
# Copyright (C) 2004 Robert Jordens <jordens@debian.org>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
# USA
# 
# arch-tag: 0f56dd99-7867-407b-a22e-e1c006c2365d

from distutils.core import setup
from glob import glob

setup(name="gpib-devices",
      version="0.0.4+",
      description="Python GPIB Device Library",
      long_description="""
        GPIB device driver library for python. A Generic IEEE 488 and
        IEEE 4882 class for any GPIB device is subclassed in various
        devices for different laboratory equipment devices.

        This library uses ctypes to directly access the GPIB library
        from either linux-gpib (http://linux-gpib.sourceforge.net/) or
        National Instruments.

        It does not yet mirror all functions from libgpib but tries to
        exploit many of Python's features that make GPIB programming
        more fun.
      """,
      author="Robert Jordens",
      author_email="jordens@debian.org",
      license="LGPL",
      url="http://people.debian.org/~jordens/gpib-devices",
      classifiers = [
        "Development Status :: 3 - Alpha",
        "Environment :: Console",
        "Intended Audience :: Science/Research",
        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
        "Natural Language :: English",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Topic :: Internet",
        "Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
        "Topic :: Scientific/Engineering :: Visualization",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Topic :: System :: Hardware :: Hardware Drivers",
        "Topic :: System :: Networking",
      ],
      packages=["gpib", "gpib.devices", "gpib.twisted"],
      scripts = glob('examples/*.py')
     )

# epydoc --pdf -o doc -n gpib-devices -u
# http://people.debian.org/~jordens/gpib-devices/ --css blue
# --private-css green gpib
#
# epydoc --html -o doc -n gpib-devices -u
# http://people.debian.org/~jordens/gpib-devices/ --css blue
# --private-css green gpib
# 
