#!/usr/bin/env python3 import sys import os from setuptools import setup, find_packages if sys.version_info < (3, 9): raise NotImplementedError("Sorry, you need at least Python 3.9 for use pastafariutils.") setup(name='pastafariutils', version='0.76', description='Utils for make *nix scripts.', long_description='Utils for make *nix scripts.', author='Antonio de la Rosa Caballero', author_email='antonio.delarosa@salirdelhoyo.com', url='https://git.cuchulu.com/paramecio/pastafariutils', packages=['pastafariutils'], include_package_data=True, install_requires=[], license='GPLV3', platforms = 'any', classifiers=['Development Status :: 1 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: GPLV2 License', 'Topic :: Software Development :: Libraries :: Utils for Linux servers', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9' , 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12' 'Programming Language :: Python :: 3.13' ], )