Fixes in README.md

This commit is contained in:
Antonio de la Rosa 2018-01-31 01:49:03 +01:00
parent 4f63a95ffc
commit 831a813ee9
2 changed files with 5 additions and 4 deletions

View file

@ -49,7 +49,7 @@ In Fedora and other Red Hat derived distros you can use `yum install git` or `dn
You can install the framework using the next command in your server:
`pip3 install parameciofm`
`pip3 install paramecio`
or if you want development version:

View file

@ -6,15 +6,16 @@ from setuptools import setup, find_packages
if sys.version_info < (3, 3):
raise NotImplementedError("Sorry, you need at least Python 3.3 to use paramecio.")
raise NotImplementedError("Sorry, you need at least Python 3.3 for use paramecio.")
#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='paramecio',
version='0.1.2',
description='Fast and simple Framework based in bottlepy and Mako.',
packages=['paramecio'],
version='1.5.0',
description='Simple Web Framework based in bottlepy 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',
author_email='antonio.delarosa@salirdelhoyo.com',