Fixes in setup

This commit is contained in:
absurdo 2023-04-13 01:28:16 +02:00
parent 86b0283eec
commit e4b387613a

View file

@ -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'
],
)