forked from python-ivi/python-ivi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (41 loc) · 1.65 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# http://docs.python.org/distutils/
# http://packages.python.org/distribute/
try:
from setuptools import setup
except:
from distutils.core import setup
setup(
name = 'python-ivi',
description = 'Python Interchangeable Virtual Instrument Library',
version = '0.1',
long_description = '''This package is a Python-based interpretation of the
Interchangeable Virtual Instrument standard, a software abstraction for
electronic test equipment that is remotely controllable.''',
author = 'Alex Forencich',
author_email = 'alex@alexforencich.com',
url = 'http://alexforencich.com/wiki/en/python-ivi/start',
download_url = 'http://github.com/alexforencich/python-ivi/tarball/master',
keywords = 'IVI measurement instrument',
license = 'MIT License',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Hardware :: Hardware Drivers',
'Topic :: System :: Networking',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
packages = ['ivi', 'ivi.interface', 'ivi.scpi', 'ivi.agilent', 'ivi.colby', 'ivi.tektronix'],
requires = ['numpy'],
extras_require = {
'vxi11': ['python-vxi11'],
'usbtmc': ['python-usbtmc'],
'serial': ['pyserial']
}
)