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
|
|
|
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='minitor',
|
2019-07-31 04:17:00 +00:00
|
|
|
version='1.0.1',
|
2018-02-16 17:48:26 +00:00
|
|
|
description='A minimal monitoring tool',
|
|
|
|
long_description=long_description,
|
2019-06-03 21:18:08 +00:00
|
|
|
long_description_content_type='text/markdown',
|
2018-02-16 17:48:26 +00:00
|
|
|
url='https://git.iamthefij.com/iamthefij/minitor',
|
2018-04-09 19:08:42 +00:00
|
|
|
download_url=(
|
|
|
|
'https://git.iamthefij.com/iamthefij/minitor/archive/master.tar.gz'
|
|
|
|
),
|
2018-02-16 17:48:26 +00:00
|
|
|
author='Ian Fijolek',
|
|
|
|
author_email='ian@iamthefij.com',
|
|
|
|
classifiers=[
|
2019-06-03 19:18:35 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2018-02-16 17:48:26 +00:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'Topic :: System :: Monitoring',
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2019-06-03 19:18:35 +00:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2018-02-16 17:48:26 +00:00
|
|
|
],
|
|
|
|
keywords='minitor monitoring alerting',
|
2018-10-29 19:28:17 +00:00
|
|
|
packages=find_packages(exclude=[
|
|
|
|
'contrib',
|
|
|
|
'docs',
|
2019-03-08 20:29:55 +00:00
|
|
|
'examples',
|
2018-10-29 19:28:17 +00:00
|
|
|
'scripts',
|
2019-03-08 20:29:55 +00:00
|
|
|
'tests',
|
2018-10-29 19:28:17 +00:00
|
|
|
]),
|
2018-02-16 17:48:26 +00:00
|
|
|
install_requires=[
|
2018-07-13 06:01:36 +00:00
|
|
|
'prometheus_client',
|
2018-02-16 17:48:26 +00:00
|
|
|
'yamlenv',
|
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'minitor=minitor.main:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|