-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
50 lines (45 loc) · 1.76 KB
/
setup.py
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
# -*- coding: utf-8 -*-
#from distutils.core import setup
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(name="dcps",
version='0.7.0',
description='Control of DC Power Supplies/DC Electronic Loads/DMMs/SourceMeters through python',
long_description_content_type='text/markdown',
long_description=long_description,
url='https://github.com/sgoadhouse/dcps',
author='Stephen Goadhouse',
author_email="[email protected]",
maintainer='Stephen Goadhouse',
maintainer_email="[email protected]",
license='MIT',
keywords=['Rigol', 'DP800', 'DP832A', 'DL3000', 'DL3031A', 'AimTTI', 'BK', '9115', 'Keysight', 'Agilent', 'Keithley',
'E3642A', 'E364xA', '6220', '6221', '2182', '2182A', '2400', 'DMM6500',
'PyVISA', 'VISA', 'SCPI', 'INSTRUMENT'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=[
'pyvisa>=1.9.0,!=1.11.0',
'pyvisa-py>=0.4.1'
],
packages=["dcps"],
include_package_data=True,
zip_safe=False
)