-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='LogClouseau',
packages=find_packages(exclude=['tests']),
version='0.1.0',
description='LogClouseau inspects your logs, extracts information and '
'sends alerts according to your conditions',
long_description=readme,
author='Alessandro Balasco',
author_email='[email protected]',
url='https://github.com/palicao/logclouseau',
keywords=[
'log',
'inspect',
'alert',
],
install_requires=[
'toml',
'slackclient',
'tailer',
'click',
'expressions @ git+https://github.com/palicao/expressions@079359ee8111769ca18ade25aad4de0133e1bfc0#egg=expressions'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
entry_points={
'console_scripts': ['logclouseau=src.command:main'],
}
)