-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 810 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 810 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# Authors
# Florian Forster <florian.forster@rwth-aachen.de>
# Sam Schott <ss2151@cam.ac.uk>
setup(name='mercuryitc',
version='0.3.0',
description='Full Python driver for the Oxford Mercury iTC cryogenic environment controller.',
author='Florian Forster, Sam Schott',
maintainer='Florian Forster',
maintainer_email='florian.forster@rwth-aachen.de',
url='https://github.com/crazyfermions/python-mercury_driver',
licence='MIT',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'PyVISA',
'pyvisa-py',
],
zip_safe=False,
)