forked from Ulm-IQO/qudi-iqo-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
103 lines (89 loc) · 3.13 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
99
100
101
102
103
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_namespace_packages
unix_dep = [
'qudi-core>=1.5.0',
'entrypoints>=0.4',
'fysom>=2.1.6',
'lmfit>=1.0.3',
'lxml>=4.9.1',
'matplotlib>=3.6.0',
'nidaqmx>=0.5.7',
'numpy>=1.23.3',
'pyqtgraph>=0.13.1',
'PySide2', # get fixed version from core
'PyVisa>=1.12.0',
'scipy>=1.9.1',
'zaber_motion>=2.14.6'
]
windows_dep = [
'qudi-core>=1.5.0',
'entrypoints>=0.4',
'fysom>=2.1.6',
'lmfit>=1.0.3',
'lxml>=4.9.1',
'matplotlib>=3.6.0',
'nidaqmx>=0.5.7',
'numpy>=1.23.3',
'pyqtgraph>=0.13.1',
'PySide2', # get fixed version from core
'PyVisa>=1.12.0',
'scipy>=1.9.1',
'zaber_motion>=2.14.6'
]
with open('VERSION', 'r') as file:
version = file.read().strip()
with open('README.md', 'r') as file:
long_description = file.read()
setup(
name='qudi-iqo-modules',
version=version,
packages=find_namespace_packages(where='src'),
package_dir={'': 'src'},
package_data={'qudi' : ['default.cfg'],
'qudi.gui': ['*.ui', '*/*.ui'],
},
description='IQO measurement modules collection for qudi',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Ulm-IQO/qudi-iqo-modules',
project_urls={'Documentation': 'https://ulm-iqo.github.io/qudi-iqo-modules/',
'Source Code': 'https://github.com/Ulm-IQO/qudi-iqo-modules/',
'Bug Tracker': 'https://github.com/Ulm-IQO/qudi-iqo-modules/issues/',
},
keywords=['qudi',
'diamond',
'quantum',
'confocal',
'experiment',
'lab',
'laboratory',
'instrumentation',
'instrument',
'modular',
'measurement',
],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Environment :: MacOS X',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
],
license='LGPLv3',
install_requires=windows_dep if sys.platform == 'win32' else unix_dep,
python_requires='>=3.8, <3.11',
zip_safe=False
)