Fixes in multiple things for modern systems
This commit is contained in:
parent
c31f61aa1b
commit
c9f77b191a
13 changed files with 829 additions and 81 deletions
23
setup.py
23
setup.py
|
|
@ -5,32 +5,32 @@ import os
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
if sys.version_info < (3, 3):
|
||||
raise NotImplementedError("Sorry, you need at least Python 3.3 for use paramecio.")
|
||||
if sys.version_info < (3, 8):
|
||||
raise NotImplementedError("Sorry, you need at least Python 3.8 for use paramecio.")
|
||||
|
||||
#import paramecio
|
||||
# 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
|
||||
|
||||
setup(name='paramecio',
|
||||
version='1.5.0',
|
||||
version='1.6.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',
|
||||
author='Antonio de la Rosa Caballero',
|
||||
author_email='antonio.delarosa@coesinfo.com',
|
||||
url='https://github.com/paramecio/parameciofm/',
|
||||
author_email='antonio.delarosa@salirdelhoyo.com',
|
||||
url='https://git.cuchulu.com/paramecio/parameciofm/',
|
||||
packages=['paramecio', 'paramecio.i18n', 'paramecio.settings'],
|
||||
include_package_data=True,
|
||||
install_requires=['bottle', 'mako', 'pymysql', 'sqlalchemy',
|
||||
'oslo.concurrency', 'itsdangerous', 'colorama','cherrypy', 'arrow'],
|
||||
install_requires=['bottle', 'mako', 'pymysql', 'sqlalchemy', 'oslo.concurrency', 'itsdangerous', 'colorama','cherrypy', 'arrow'],
|
||||
entry_points={'console_scripts': [
|
||||
'paramecio = paramecio.console:start',
|
||||
'parameciodb = paramecio.cromosoma.dbamin.start'
|
||||
]},
|
||||
license='GPLV3',
|
||||
license='AGPLV3',
|
||||
platforms = 'any',
|
||||
classifiers=['Development Status :: 1 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: GPLV2 License',
|
||||
'License :: OSI Approved :: AGPLV3 License',
|
||||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
|
||||
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
|
||||
'Topic :: Internet :: WWW/HTTP :: WSGI',
|
||||
|
|
@ -38,9 +38,6 @@ setup(name='paramecio',
|
|||
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
|
||||
'Topic :: Software Development :: Libraries :: Application Frameworks',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6'
|
||||
'Programming Language :: Python :: 3.8'
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue