forked from kouwenhovenlab/v0_characterization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (24 loc) · 716 Bytes
/
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
from setuptools import setup
setup(
name='v0_characterization',
version='0.0.1',
install_requires=[
'qcodes',
'plottr',
'broadbean',
'numpy'
],
author='Mikhail Astafev',
author_email='[email protected]',
description=("Package with code and scripts for performing V0 "
"characterization measurements in Delft."),
license='',
packages=['v0_utils'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6'
],
keywords='v0 characterization',
url='https://github.com/kouwenhovenlab/v0_characterization'
)