Fixes in README.md
This commit is contained in:
parent
38da7d51f9
commit
4f63a95ffc
2 changed files with 7 additions and 6 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# A simple webframework based in Bottle and Mako for create nice webapps
|
# 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.
|
This guide give you step by step for install paramecio sucessfully.
|
||||||
|
|
||||||
|
|
|
||||||
11
setup.py
11
setup.py
|
|
@ -14,18 +14,18 @@ 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 bottlepy 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',
|
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='webmaster@web-t-sys.com',
|
author_email='antonio.delarosa@salirdelhoyo.com',
|
||||||
url='http://paramecioproject.com/',
|
url='https://github.com/paramecio/parameciofm/',
|
||||||
packages=['paramecio', 'paramecio.i18n', 'paramecio.settings'],
|
packages=['paramecio', 'paramecio.i18n', 'paramecio.settings'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=['bottle', 'mako', 'mysqlclient', 'sqlalchemy', 'oslo.concurrency', 'itsdangerous', 'colorama','cherrypy', 'arrow'],
|
install_requires=['bottle', 'mako', 'mysqlclient', 'sqlalchemy', 'oslo.concurrency', 'itsdangerous', 'colorama','cherrypy', 'arrow'],
|
||||||
entry_points={'console_scripts': [
|
entry_points={'console_scripts': [
|
||||||
'paramecio = paramecio.console:start',
|
'paramecio = paramecio.console:start',
|
||||||
]},
|
]},
|
||||||
license='GPLV2',
|
license='GPLV3',
|
||||||
platforms = 'any',
|
platforms = 'any',
|
||||||
classifiers=['Development Status :: 1 - Beta',
|
classifiers=['Development Status :: 1 - Beta',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
|
|
@ -40,5 +40,6 @@ setup(name='paramecio',
|
||||||
'Programming Language :: Python :: 3.3',
|
'Programming Language :: Python :: 3.3',
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Programming Language :: Python :: 3.6'
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue