forked from jamesoff/simplemonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (52 loc) · 1.61 KB
/
setup.py
File metadata and controls
54 lines (52 loc) · 1.61 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="simplemonitor",
author="James Seward",
author_email="james@jamesoff.net",
description="A simple network and host monitor",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jamesoff/simplemonitor",
packages=setuptools.find_packages(exclude="tests"),
package_data={
"simplemonitor": ["html/header.html", "html/footer.html", "html/style.css"]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Topic :: System :: Monitoring",
"Typing :: Typed",
],
python_requires=">=3.6.2",
entry_points={
"console_scripts": [
"simplemonitor=simplemonitor.monitor:main",
"winmonitor=simplemonitor.winmonitor:main",
]
},
extras_require={
"ring": ["ring-doorbell>=0.6.0"],
"arlo": ["pyarlo"],
"ssh": ["paramiko"],
},
install_requires=[
"arrow",
"boto3",
"colorlog",
"paho-mqtt",
"ping3",
"psutil",
"pyOpenSSL",
"requests",
'pync; platform_system=="Darwin"',
'pywin32; platform_system=="Windows"',
],
)