mirror of
https://github.com/m1ngsama/tracker.git
synced 2025-12-24 10:51:43 +00:00
55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
from setuptools import setup
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
with open("requirements.txt", "r", encoding="utf-8") as fh:
|
|
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
|
|
|
|
setup(
|
|
name="system-tracker",
|
|
version="1.0.0",
|
|
author="m1ngsama",
|
|
author_email="",
|
|
description="A comprehensive system monitoring tool for tracking machine health metrics",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/m1ngsama/tracker",
|
|
py_modules=[
|
|
"tracker",
|
|
"process_monitor",
|
|
"temperature_monitor",
|
|
"config_manager",
|
|
"alert_system",
|
|
"logger",
|
|
"data_exporter",
|
|
],
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: System Administrators",
|
|
"Topic :: System :: Monitoring",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Operating System :: OS Independent",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Operating System :: MacOS",
|
|
"Operating System :: Microsoft :: Windows",
|
|
],
|
|
python_requires=">=3.8",
|
|
install_requires=requirements,
|
|
entry_points={
|
|
"console_scripts": [
|
|
"tracker=tracker:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
data_files=[
|
|
("", ["config.json"]),
|
|
],
|
|
)
|