minitor/setup.py

56 lines
1.6 KiB
Python
Raw Permalink Normal View History

2018-02-16 17:48:26 +00:00
from codecs import open
from os import path
2018-04-09 19:08:42 +00:00
from setuptools import find_packages
from setuptools import setup
2018-02-16 17:48:26 +00:00
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
2022-04-05 03:23:15 +00:00
with open(path.join(here, "README.md"), encoding="utf-8") as f:
2018-02-16 17:48:26 +00:00
long_description = f.read()
setup(
2022-04-05 03:23:15 +00:00
name="minitor",
version="1.0.3",
description="A minimal monitoring tool",
2018-02-16 17:48:26 +00:00
long_description=long_description,
2022-04-05 03:23:15 +00:00
long_description_content_type="text/markdown",
url="https://git.iamthefij.com/iamthefij/minitor",
download_url=("https://git.iamthefij.com/iamthefij/minitor/archive/master.tar.gz"),
author="Ian Fijolek",
author_email="ian@iamthefij.com",
2018-02-16 17:48:26 +00:00
classifiers=[
2022-04-05 03:23:15 +00:00
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
2018-02-16 17:48:26 +00:00
],
2022-04-05 03:23:15 +00:00
keywords="minitor monitoring alerting",
packages=find_packages(
exclude=[
"contrib",
"docs",
"examples",
"scripts",
"tests",
]
),
2018-02-16 17:48:26 +00:00
install_requires=[
2022-04-05 03:23:15 +00:00
"prometheus_client",
"yamlenv",
2018-02-16 17:48:26 +00:00
],
entry_points={
2022-04-05 03:23:15 +00:00
"console_scripts": [
"minitor=minitor.main:main",
2018-02-16 17:48:26 +00:00
],
},
)