Skip to content

Commit

Permalink
Added setup scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
hgrecco committed Sep 3, 2014
1 parent 6d414fd commit ff43eb5
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[check-manifest]
ignore =
.travis.yml
tox.ini
65 changes: 65 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

try:
import sys
reload(sys).setdefaultencoding("UTF-8")
except:
pass


try:
from setuptools import setup
except ImportError:
print('Please install or upgrade setuptools or pip to continue')
sys.exit(1)


import codecs


def read(filename):
return codecs.open(filename, encoding='utf-8').read()


long_description = '\n\n'.join([read('README'),
read('AUTHORS'),
read('CHANGES')])

__doc__ = long_description

requirements = []#['pyvisa>1.5']

setup(name='PyVISA-py',
description='Python VISA bindings for GPIB, RS232, and USB instruments',
version='0.1.dev0',
long_description=long_description,
author='Hernan E. Grecco',
author_email='hernan.grecco@gmail.com',
maintainer='Hernan E. Grecco',
maintainer_email='hernan.grecco@gmail.com',
url='https://github.com/hgrecco/pyvisa-py',
keywords='Remote VISA GPIB USB serial RS232 measurement acquisition',
license='MIT License',
install_requires=requirements,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
packages=['pyvisa-py', ],
platforms="Linux, Windows,Mac",
use_2to3=False,
zip_safe=False)

0 comments on commit ff43eb5

Please sign in to comment.