-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.33 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="ez_monitor",
version="1.1.1",
author="Pedro Fernandes",
author_email="[email protected]",
description="A lightweight system metrics visualization tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pedro-cf/ez_monitor",
packages=find_packages(),
include_package_data=True,
package_data={'ez_monitor': ['static/*', 'templates/*']},
install_requires=[
"setuptools==75.1.0",
"Flask==2.0.3",
"Werkzeug==2.0.3",
"Jinja2==3.0.3",
"itsdangerous==2.0.1",
"click==8.0.4",
"psutil==5.9.0",
"flask-cors==5.0.0",
"py-cpuinfo==9.0.0",
"GPUtil==1.4.0",
"requests==2.26.0",
"pywin32==301; platform_system=='Windows'",
"docker==7.1.0",
],
extras_require={
'windows': ["pywin32==301"],
},
entry_points={
"console_scripts": [
"ez_monitor=ez_monitor.app:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)