-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
51 lines (47 loc) · 1.44 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
from setuptools import setup, find_packages
# Project metadata
NAME = "ServerMonPy"
VERSION = "0.1.0"
DESCRIPTION = "Real-time server monitoring tool using SSH"
AUTHOR = "sanjay,suresh,logu"
EMAIL = "rubikproxy@gmail.com"
URL = "https://github.com/rubikproxy/ServerMonPy"
# Long description from README file
with open("README.md", "r", encoding="utf-8") as readme_file:
LONG_DESCRIPTION = readme_file.read()
# List of project dependencies
REQUIREMENTS = [
"paramiko==2.8.0",
"psutil==5.8.0",
]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
url=URL,
packages=find_packages(),
install_requires=REQUIREMENTS,
python_requires=">=3.6",
entry_points={
"console_scripts": [
"ServerMonPy=ServerMonPy.main:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
],
)