From 831a813ee98e39e97e6c9e745486e7dd3c4ae80f Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Wed, 31 Jan 2018 01:49:03 +0100 Subject: [PATCH] Fixes in README.md --- README.md | 2 +- setup.py | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2317247..573dcdd 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/setup.py b/setup.py index 424b4f9..2f6ffe9 100644 --- a/setup.py +++ b/setup.py @@ -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',