-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
72 lines (66 loc) · 1.9 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
import os
from setuptools import setup, find_packages
import json
def get_version():
runinfo_dir = os.path.dirname(os.path.abspath(__file__))
path = os.path.join(runinfo_dir, "pyscan/VERSION.json")
with open(path) as version_file:
version = json.load(version_file)['version']
if type(version) is str:
return 'v' + version
else:
assert False, "no valid version found"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pyscan",
version=get_version(),
author="Andrew M. Mounce, Michael P. Lilly, Jasmine J. Mah, Ryan S. Brost",
author_email="[email protected]",
description=(
"""
Python measurement toolbox to interface with scientific
instruments and run experements"""
),
license="MIT",
keywords=[
"scientific",
"instrument",
"drivers",
"measurement",
"experiment",
],
url="",
packages=find_packages(exclude=['docs']),
long_description=read('README.md'),
long_description_content_type="text/markdown",
install_requires=[
'pyvisa',
'numpy >=1.21',
'pandas',
'pyserial',
'ipywidgets',
'h5py',
'matplotlib',
'jupyter',
'pytest',
'nbmake',
'seabreeze',
'pylablib',
'pyscan-tlk'
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: MIT",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix"
],
python_requires='>=3.6',
include_package_data=True, # Ensure package data is included
package_data={
'pyscan': ['VERSION.json'], # Specify the package data to include
},
)