From 4f63a95ffc43fbeb0a834b39bb326f15d2cac928 Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Wed, 31 Jan 2018 00:39:36 +0100 Subject: [PATCH] Fixes in README.md --- README.md | 2 +- setup.py | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 541d81a..2317247 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # A simple webframework based in Bottle and Mako for create nice webapps -#Installation +# Installation This guide give you step by step for install paramecio sucessfully. diff --git a/setup.py b/setup.py index d58b09a..424b4f9 100644 --- a/setup.py +++ b/setup.py @@ -14,18 +14,18 @@ if sys.version_info < (3, 3): setup(name='paramecio', version='0.1.2', - description='Fast and simple Framework based in bottle and Mako.', - long_description='This framework is 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', + description='Fast and simple 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='webmaster@web-t-sys.com', - url='http://paramecioproject.com/', + author_email='antonio.delarosa@salirdelhoyo.com', + url='https://github.com/paramecio/parameciofm/', packages=['paramecio', 'paramecio.i18n', 'paramecio.settings'], include_package_data=True, install_requires=['bottle', 'mako', 'mysqlclient', 'sqlalchemy', 'oslo.concurrency', 'itsdangerous', 'colorama','cherrypy', 'arrow'], entry_points={'console_scripts': [ 'paramecio = paramecio.console:start', ]}, - license='GPLV2', + license='GPLV3', platforms = 'any', classifiers=['Development Status :: 1 - Beta', 'Intended Audience :: Developers', @@ -40,5 +40,6 @@ setup(name='paramecio', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6' ], )