Fixes in README and setup.py

This commit is contained in:
Antonio de la Rosa 2017-02-18 03:41:39 +01:00
parent dc427e52d6
commit 79958914fd
2 changed files with 4 additions and 4 deletions

View file

@ -39,15 +39,15 @@ In Fedora and other Red Hat derived distros you can use `yum install python3-pip
### Git ### Git
[Git](https://git-scm.com/) is a tool used for manage source code repositories. Also is a tool that can be used for distribute software. For install the next tools you need git install in your server. [Git](https://git-scm.com/) is a tool used for manage source code repositories. Also is a tool that can be used for distribute software. For install the next tools you need git installed in your server.
In Debian and Ubuntu you can install git using the next command: `apt-get install git`. In Debian and Ubuntu you can install git using the next command: `apt-get install git`.
In Fedora and other Red Hat derived distros you can use `yum install git`. In Fedora and other Red Hat derived distros you can use `yum install git` or `dnf install git` in last fedora versions.
## Install Paramecio Framework ## Install Paramecio Framework
Pastafari need a web framework called Paramecio. You can install this framework using the next command in your server: You can install the framework using the next command in your server:
`pip3 install git+https://github.com/paramecio/parameciofm` `pip3 install git+https://github.com/paramecio/parameciofm`

View file

@ -15,7 +15,7 @@ if sys.version_info < (3, 3):
setup(name='paramecio', setup(name='paramecio',
version='0.1.2', version='0.1.2',
description='Fast and simple Framework based in bottle and Mako.', 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 ', 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',
author='Antonio de la Rosa Caballero', author='Antonio de la Rosa Caballero',
author_email='webmaster@web-t-sys.com', author_email='webmaster@web-t-sys.com',
url='http://paramecioproject.com/', url='http://paramecioproject.com/',