Added pastafariagent

This commit is contained in:
Antonio de la Rosa 2021-06-03 12:35:29 +02:00
parent b1698487ca
commit f08c99800d
3 changed files with 201 additions and 92 deletions

View file

@ -14,13 +14,13 @@ if sys.version_info < (3, 5):
setup(name='pastafaristats',
version='1.0.0',
description='Simple scripts for send basic data of a server how complement to other stats solutions more comples.',
description='Simple scripts for send basic data of a server how complement to other stats solutions more complex.',
author='Antonio de la Rosa Caballero',
author_email='antonio.delarosa@coesinfo.com',
url='https://bitbucket.org/paramecio/pastafaristats/',
packages=['pastafaristats'],
include_package_data=True,
install_requires=['psutil'],
install_requires=['psutil', 'pyqt5'],
entry_points={'console_scripts': [
'pastafaristats = pastafaristats.send_info_daemon:start',
]},
@ -31,9 +31,9 @@ setup(name='pastafaristats',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPLV3 License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)