This repository was archived by the owner on Nov 26, 2021. It is now read-only.
forked from fordindin/zaggregator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.3 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.3 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="zaggregator",
version="0.0.4",
author="Denis Barov",
author_email="dindin+zaggregator@dindin.ru",
description="Per-process stat monitoring solution for Zabbix",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fordindin/zaggregator",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
keywords="zabbix monitoring",
python_requires='>=3',
install_requires=['fuzzywuzzy>=0.16.0', 'psutil>=5.4.5', 'python-Levenshtein>=0.12.0', 'setproctitle>=1.1.10'],
packages=setuptools.find_packages(exclude=['contrib', 'docs', 'tests*', 'venv', 'misc', 'build', 'dist']),
zip_safe=True,
entry_points={
'console_scripts': [
'zaggregator = zaggregator.daemon:start',
'zcheck = zaggregator.client:main',
],},
data_files=[
('/var/run/zaggregator', []),
('/usr/share/zaggregator', ['misc/zaggregator.service', 'misc/zaggregator.conf', 'README.md', 'LICENSE',]),
('/usr/share/zaggregator/init.d', ['misc/init.d/zaggregator'],),
],
)