FIxes in documentation

This commit is contained in:
absurdo 2023-12-26 10:56:43 +01:00
parent 4633da9494
commit 76db9d7816
3 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,7 @@ Also, you need the next software installed in your os:
### Python 3.10 or later. ### Python 3.10 or later.
Paramecio should work fine in 3.5-3.9 but is tested in 3.10 and 3.11 python 3 versions actually. Paramecio should work fine in 3.5-3.9 but is tested in 3.10, 3.11 and 3.12 python 3 versions actually.
In Debian and Ubuntu you can install Python 3 using the next command: `apt-get install python3`. In Debian and Ubuntu you can install Python 3 using the next command: `apt-get install python3`.
@ -20,7 +20,7 @@ In Fedora and other Red Hat derived distros you can use `yum install python3`. I
### MySQL or MariaDB database servers. ### MySQL or MariaDB database servers.
MariaDB 10.6 and later are recommended but is compatible with MariaDB 10. MariaDB 10.6 and later are recommended but is compatible with previous versions.
In Debian and Ubuntu you can install MariaDB using the next command: `apt-get install mariadb-server`. In Debian and Ubuntu you can install MariaDB using the next command: `apt-get install mariadb-server`.
@ -53,7 +53,7 @@ You can install the framework using the next command in your server:
or if you want development version: or if you want development version:
`pip3 install git+https://git.cuchulu.com/absurdo/paramecio2fm.git` `pip3 install git+https://git.cuchulu.com/paramecio/paramecio2fm.git`
This command will install in your server paramecio framework with its dependencies. This command will install in your server paramecio framework with its dependencies.

View file

@ -1,5 +1,5 @@
========================================================== ==========================================================
Paramecio is a simple framework based in bottle and mako. Paramecio is a simple framework based in flask and mako.
========================================================== ==========================================================

View file

@ -13,7 +13,7 @@ if sys.version_info < (3, 9):
# If you install passlib and bcrypt, the password system will use bcrypt by default, if not, will use native crypt libc # If you install passlib and bcrypt, the password system will use bcrypt by default, if not, will use native crypt libc
setup(name='paramecio2', setup(name='paramecio2',
version='2.0.30', version='2.0.31',
description='Simple Web Framework based in flask and Mako.', 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', 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='Antonio de la Rosa Caballero',