-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (54 loc) · 1.67 KB
/
setup.py
File metadata and controls
60 lines (54 loc) · 1.67 KB
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
import os
import glob
import shutil
from setuptools import setup, find_packages, Command
import codecs
from os import path
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# set up automated versioning reading
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), 'r') as fp:
return fp.read()
def get_version(rel_path):
for line in read(rel_path).splitlines():
if line.startswith('__version__'):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
raise RuntimeError("Unable to find version string.")
setup(name='pytesdaq',
version=get_version('pytesdaq/_version.py'),
description='DAQ and Intruments control for TES development',
long_description=long_description,
long_description_content_type='text/markdown',
author='Bruno Serfass',
author_email='serfass@berkeley.edu',
url="https://github.com/spice-herald/pytesdaq",
zip_safe = False,
include_package_data = True,
package_data = {
'': ['*.ini'],
},
packages = find_packages(),
install_requires=[
'PyQt5',
'matplotlib',
'lakeshore',
'pandas',
'nidaqmx',
'pyvisa',
'paramiko>=3.2.0',
'walrus',
'h5py',
'qetpy>=1.8.0',
'scipy',
'seaborn',
'astropy',
'lmfit',
'tables'
],
)