FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-vxi11/setup.py at master · python-ivi/python-vxi11 · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
python-ivi
/
python-vxi11
Public archive
Notifications
You must be signed in to change notification settings
Fork
79
Star
176
Code
Issues
28
Pull requests
10
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-vxi11
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (46 loc) · 1.73 KB
Breadcrumbs
python-vxi11
/
setup.py
Copy path
File metadata and controls
52 lines (46 loc) · 1.73 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
45
46
47
48
49
50
51
from
__future__
import
with_statement
# http://docs.python.org/distutils/
# http://packages.python.org/distribute/
try
:
from
setuptools
import
setup
except
:
from
distutils
.
core
import
setup
import
os
.
path
version_py
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'vxi11'
,
'version.py'
)
with
open
(
version_py
,
'r'
)
as
f
:
d
=
dict
()
exec
(
f
.
read
(),
d
)
version
=
d
[
'__version__'
]
setup
(
name
=
'python-vxi11'
,
description
=
'Python VXI-11 driver for controlling instruments over Ethernet'
,
version
=
version
,
long_description
=
'''This Python package supports the VXI-11 Ethernet
instrument control protocol for controlling VXI11 and LXI compatible instruments.'''
,
author
=
'Alex Forencich'
,
author_email
=
'alex@alexforencich.com'
,
url
=
'http://alexforencich.com/wiki/en/python-vxi11/start'
,
download_url
=
'http://github.com/python-ivi/python-vxi11/tarball/master'
,
keywords
=
'VXI LXI measurement instrument'
,
license
=
'MIT License'
,
classifiers
=
[
'Development Status :: 4 - Beta'
,
'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
=
[
'vxi11'
],
entry_points
=
{
'console_scripts'
: [
'vxi11-cli = vxi11.cli:main'
,
],
},
)
Back
|
FazBrowse Home
|
New Git URL