forked from coburnw/python-vxi11-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 798 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
import os.path
setup(
name = 'python-vxi11-server',
description = '''Python VXI-11 driver for controlling instruments over Ethernet
and server for creating instruments''',
version = '1.1.0',
long_description = '''This Python package supports the VXI-11 Ethernet
instrument control protocol for controlling and creating VXI11 and LXI compatible instruments.''',
download_url = 'https://github.com/ulda/python-vxi11-server',
keywords = 'VXI LXI measurement instrument client server',
license = 'MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
packages = ['vxi11_server'],
python_requires=">=3.5",
)