add(app): create python application

This commit is contained in:
Aleksandr Tcitlionok
2024-12-11 12:14:25 +00:00
parent 11641e5e10
commit 24e09330ea
11 changed files with 531 additions and 2 deletions

28
setup.py Normal file
View File

@@ -0,0 +1,28 @@
from setuptools import setup, find_packages
setup(
name="metalcheck-cli",
version="0.1.0",
description="CLI tool for managing and visualizing Metal Check data",
author="Aleksandr Tcitlionok",
author_email="satos@vskp.su",
url="https://github.com/terghalin/metalcheck-cli",
packages=find_packages(),
include_package_data=True,
install_requires=[
"click",
"requests",
"rich",
],
entry_points={
"console_scripts": [
"metalcheck=cli.main:cli",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License 3.0 (AGPL 3.0)",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)