-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
98 lines (82 loc) · 3.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
print('Please install or upgrade setuptools or pip to continue')
sys.exit(1)
import os
import sys
import codecs
def read(filename):
return codecs.open(filename, encoding='utf-8').read()
long_description = '\n\n'.join([read('README'),
read('AUTHORS'),
read('CHANGES')])
__doc__ = long_description
requirements = []
if sys.version_info < (3, 4):
requirements.append('enum34')
root_folder = os.path.dirname(os.path.abspath(__file__))
# Compile a list of companies with drivers.
folder = os.path.join(root_folder, 'lantz', 'drivers')
paths = os.listdir(folder)
companies = [path for path in paths
if os.path.isdir(os.path.join(folder, path))
and os.path.exists(os.path.join(folder, path, '__init__.py'))]
# Compile a list of companies with legacy drivers.
folder = os.path.join(root_folder, 'lantz', 'drivers', 'legacy')
paths = os.listdir(folder)
legacy_companies = [path for path in paths
if os.path.isdir(os.path.join(folder, path))
and os.path.exists(os.path.join(folder, path, '__init__.py'))]
setup(name='Lantz',
version='0.4.dev0',
license='BSD',
description='Instrumentation framework',
long_description=long_description,
keywords='measurement control instrumentation science',
author='Hernan E. Grecco',
author_email='[email protected]',
url='http://lantz.glugcen.dc.uba.ar/',
packages=['lantz',
'lantz.ui',
'lantz.ui.blocks',
'lantz.simulators',
'lantz.utils',
'lantz.drivers'] +
['lantz.drivers.' + company for company in companies] +
['lantz.drivers.legacy.' + company for company in legacy_companies],
test_suite='lantz.testsuite.testsuite',
install_requires=['pint>=0.6',
'pyvisa>=1.6.2',
'stringparser',
] + requirements,
zip_safe=False,
platforms='any',
entry_points={
'zest.releaser.releaser.after_checkout': [
'pyroma = lantz:run_pyroma',
],
'console_scripts': [
'lantz-sim = lantz.simulators:main',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries'
],
scripts=['scripts/lantz-monitor',
],
)