From e4b387613ab9cfda1027e31160147da8719ccaf0 Mon Sep 17 00:00:00 2001 From: absurdo Date: Thu, 13 Apr 2023 01:28:16 +0200 Subject: [PATCH] Fixes in setup --- setup.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 95fad22..e15a1c4 100644 --- a/setup.py +++ b/setup.py @@ -5,12 +5,8 @@ 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 +if sys.version_info < (3, 6): + raise NotImplementedError("Sorry, you need at least Python 3.6 for use pastafaristats.") setup(name='pastafaristats', version='1.0.1', @@ -18,7 +14,7 @@ setup(name='pastafaristats', author='Antonio de la Rosa Caballero', author_email='antonio.delarosa@coesinfo.com', url='https://bitbucket.org/paramecio/pastafaristats/', - packages=['pastafaristats'], + packages=['pastafaristats', 'pastafaristats.utils'], include_package_data=True, install_requires=['psutil'], entry_points={'console_scripts': [ @@ -34,6 +30,7 @@ setup(name='pastafaristats', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9' + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10' ], )