Fixes in README.md
This commit is contained in:
parent
4f63a95ffc
commit
831a813ee9
2 changed files with 5 additions and 4 deletions
|
|
@ -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:
|
You can install the framework using the next command in your server:
|
||||||
|
|
||||||
`pip3 install parameciofm`
|
`pip3 install paramecio`
|
||||||
|
|
||||||
or if you want development version:
|
or if you want development version:
|
||||||
|
|
||||||
|
|
|
||||||
7
setup.py
7
setup.py
|
|
@ -6,15 +6,16 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
if sys.version_info < (3, 3):
|
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
|
#import paramecio
|
||||||
# Pillow should be installed after if you need ImageField
|
# 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
|
# If you install passlib and bcrypt, the password system will use bcrypt by default, if not, will use native crypt libc
|
||||||
|
|
||||||
setup(name='paramecio',
|
setup(name='paramecio',
|
||||||
version='0.1.2',
|
packages=['paramecio'],
|
||||||
description='Fast and simple Framework based in bottlepy and Mako.',
|
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',
|
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',
|
||||||
author_email='antonio.delarosa@salirdelhoyo.com',
|
author_email='antonio.delarosa@salirdelhoyo.com',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue