Fixes in coreforms and freed new version

This commit is contained in:
absurdo 2023-04-28 21:50:58 +02:00
parent db23fb230b
commit f3d4d94a5b
2 changed files with 4 additions and 4 deletions

View file

@ -5,15 +5,15 @@ 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 paramecio2.")
if sys.version_info < (3, 6):
raise NotImplementedError("Sorry, you need at least Python 3.6 for use paramecio2.")
#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='paramecio2',
version='2.0.20',
version='2.0.21',
description='Simple Web Framework based in flask and Mako.',
long_description='This framework is a simple framework used for create web apps. Paramecio is modular and fast. By default have a module called admin that can be used for create admin sites',
author='Antonio de la Rosa Caballero',