forked from sandialabs/pyscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (47 loc) · 1.29 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pyscan",
version="0.0.1",
author="Andrew M. Mounce, Michael P. Lilly, Jasmine J. Mah",
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',
],
extras_require={'oceanoptics': ['seabreeze']},
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',
)