-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (37 loc) · 1.06 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
from setuptools import setup, find_packages
setup(
name='cryocontrol',
version='0.1.0',
description='Drivers and GUI for cryogenic temperature controllers',
author='Sam Schott',
author_email='[email protected]',
url='https://github.com/oe-fet/cryocontrol.git',
license='MIT',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
package_data={
'cryocontrol': ['**/*.ui', '**/**/*.ui'],
},
entry_points={
'console_scripts': [
'cryogui=cryocontrol.gui.main:run'
],
},
install_requires=[
'pyvisa',
'numpy',
'pyqtgraph>=0.11.0',
'PyQt5>=5.9',
'setuptools',
],
zip_safe=False,
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)