-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·48 lines (44 loc) · 1.92 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os.path
version_py = os.path.join(os.path.dirname(__file__), 'lantz_core',
'version.py')
with open(version_py, 'r') as f:
d = dict()
exec(f.read(), d)
version = d['__version__']
setup(
name = 'lantz_core',
description = 'Instrumentation framework',
version = version,
long_description = '''Lantz is an automation and instrumentation toolkit
with a clean, well-designed and consistent interface. It provides a core of
commonly used functionalities for building applications that communicate with
scientific instruments allowing rapid application prototyping, development and
testing. Lantz benefits from Python's extensive library flexibility as a glue
language to wrap existing drivers and DLLs.''',
author = 'Lantz Developers',
author_email = 'labpy@googlegroups.com',
url = 'http://github.com/LabPy/lantz_core',
download_url = 'http://github.com/LabPy/lantz_core/tarball/master',
keywords = 'instrument control frameork measurement science',
license = 'BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: BSD 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 = find_packages(exclude=['tests', 'tests.*']),
install_requires = ['future', 'funcsigs', 'stringparser'],
requires = ['future', 'pyvisa', 'funcsigs', 'stringparser'],
)