add(app): create python application
This commit is contained in:
28
setup.py
Normal file
28
setup.py
Normal 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",
|
||||
)
|
||||
Reference in New Issue
Block a user