-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.06 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
from setuptools import setup
try:
import PyQt5
except ModuleNotFoundError:
import sys
print("Please install PyQt5 manually before running setup", file=sys.stderr)
exit(-1)
install_requires = [
"influxdb",
"matplotlib",
"pandas"
]
setup(
name="beegfsmonitor",
version="1.0.0",
description="UI for viewing BeeGFS telemetry data",
long_description="This application connects to the influxdb instance "
"on the local host to display graphs of the data"
"collected by beegfs-mon",
install_requires=install_requires,
packages=["beegfsmonitor"],
entry_points=dict(
console_scripts=[
"beegfs-monitor-ui=beegfsmonitor.ui:main"
]),
author="Kwanghun Chung Lab",
url="https://github.com/chunglabmit/beegfsmonitor",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: Qt",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
)