Fixes in README.md

This commit is contained in:
Antonio de la Rosa 2018-01-31 00:39:36 +01:00
parent 38da7d51f9
commit 4f63a95ffc
2 changed files with 7 additions and 6 deletions

View file

@ -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'
],
)