#!/usr/bin/env python3 import sys import os from setuptools import setup, find_packages if sys.version_info < (3, 5): raise NotImplementedError("Sorry, you need at least Python 3.5 for use pastafaristats.") #import paramecio # Pillow should be installed after if you need ImageField # If you install passlib and bcrypt, the password system will use bcrypt by default, if not, will use native crypt libc setup(name='pastafaristats', version='1.0.1', 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'], entry_points={'console_scripts': [ 'pastafaristats = pastafaristats.send_info_daemon:start', ]}, zip_safe=False, license='GPLV3', platforms = 'any', classifiers=['Development Status :: 1 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: GPLV3 License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9' ], )