-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (30 loc) · 1007 Bytes
/
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
from setuptools import setup
from setuptools import find_packages
setup(
name="serverstats",
version="0.3.0",
description="Collect important system metrics from a server and log them",
keywords="serverstats",
author="Deep Compute, LLC",
author_email="contact@deepcompute.com",
url="https://github.com/deep-compute/serverstats",
license="MIT",
dependency_links=["https://github.com/deep-compute/serverstats"],
install_requires=[
"basescript==0.3.8",
"psutil==5.8.0",
"deeputil==0.2.10",
"flatten-dict==0.4.2",
],
package_dir={"serverstats": "serverstats"},
packages=find_packages("."),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.8",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
test_suite="test.suite",
entry_points={"console_scripts": ["serverstats = serverstats:main"]},
)