Example #1
0
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software Foundation,
#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####


from setuptools import setup, find_packages
from scpi import version


setup(name = 'scpi',
      license = "GPLv3+",
      description = "Python module to provide scpi functionality "\
                    "from instrument side",
      version = version.version(),
      author = "Sergi Blanch-Torn\'e",
      author_email = "*****@*****.**",
      classifiers = ['Development Status :: 2 - Pre-Alpha',
                     'Intended Audience :: Developers',
                     'Intended Audience :: Science/Research',
                     'License :: OSI Approved :: '\
                        'GNU General Public License v3 or later (GPLv3+)',
                     'Operating System :: POSIX',
                     #'Programming Language :: Cython',
                     'Programming Language :: Python',
                     'Topic :: Scientific/Engineering :: '\
                        'Interface Engine/Protocol Translator',
                     'Topic :: Software Development :: Embedded Systems',
                     'Topic :: Software Development :: Libraries :: '\
                        'Python Modules',
Example #2
0
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software Foundation,
#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####

from setuptools import setup, find_packages
from scpi import version


setup(name = 'scpi',
      license = "GPLv3+",
      description = "Python module to provide scpi functionality "\
                    "from instrument side",
      version = version.version(),
      author = "Sergi Blanch-Torn\'e",
      author_email = "*****@*****.**",
      classifiers = ['Development Status :: 2 - Pre-Alpha',
                     'Intended Audience :: Developers',
                     'Intended Audience :: Science/Research',
                     'License :: OSI Approved :: '\
                        'GNU General Public License v3 or later (GPLv3+)',
                     'Operating System :: POSIX',
                     #'Programming Language :: Cython',
                     'Programming Language :: Python',
                     'Topic :: Scientific/Engineering :: '\
                        'Interface Engine/Protocol Translator',
                     'Topic :: Software Development :: Embedded Systems',
                     'Topic :: Software Development :: Libraries :: '\
                        'Python Modules',
Example #3
0
def idn():
    return "ALBA,test,0,%s" % (version())
Example #4
0
def idn():
    return "ALBA,test,0,%s" % (version())