minitor/setup.py

49 lines
1.5 KiB
Python
Raw 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
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='minitor',
2018-02-18 04:48:46 +00:00
version='0.1.1',
2018-02-16 17:48:26 +00:00
description='A minimal monitoring tool',
long_description=long_description,
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=[
# How mature is this project? Common values are
# 4 - Beta
# 5 - Production/Stable
2018-02-17 01:49:33 +00:00
'Development Status :: 4 - Beta',
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',
],
keywords='minitor monitoring alerting',
2018-02-17 01:49:33 +00:00
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
2018-02-16 17:48:26 +00:00
install_requires=[
'yamlenv',
],
entry_points={
'console_scripts': [
'minitor=minitor.main:main',
],
},
)