-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 1.6 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup
import re
import os
import sys
# load version form _version.py
VERSIONFILE = "lab_control/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
# module
setup(name='lab_control',
version=verstr,
author="Keisuke Fujii",
author_email="[email protected]",
description=("Python libraries for lab experiment."),
license="BSD 3-clause",
url="http://github.com/fujiisoup/lab_control",
include_package_data=True,
ext_modules=[],
packages=["lab_control"],
package_dir={'lab_control': 'lab_control'},
py_modules=[
'lab_control.__init__',
'lab_control.gsc01',
'lab_control.hamamatsu',
'lab_control.pwr01',
'lab_control.spectrometer',
'lab_control.sus',
'lab_control.usb_1208LS',
'lab_control.wavemeter',
],
install_requires="""""",
classifiers=['License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Physics']
)