-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
66 lines (48 loc) · 1.03 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
import sys
import subprocess
import re
import setuptools
from codecs import open
from os.path import (abspath, dirname, join)
import builtins
builtins.__MPSRAD_SETUP__ = True
exec(open('mpsrad/version.py').read())
setuptools.setup(
name = "mpsrad",
version=__version__,
author = "Borys Dabrowski",
author_email = "[email protected]",
keywords = "atmospheric science",
description = "MPS software to control radiometer",
packages = setuptools.find_packages(),
classifiers = [
"Development Status :: Beta ",
"Natural Language :: English",
"Programming Language :: Python : : 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering ::Atmospheric Science",
"license :: OSI Approved :: MIT License",
],
install_requires = [
"datetime",
"PyQt5",
"files",
"msgpack",
"guidata",
"PythonQwt",
"pillow",
"scipy",
"numpy",
"guiqwt",
"matplotlib",
"sphinx_rtd_theme",
#"os",
#"re",
"pyserial",
#"serial",
#"socket",
#"struct",
#"threading",
#"time",
],
)