Added files for install
This commit is contained in:
parent
90e0838459
commit
0ea518919d
4 changed files with 475 additions and 8 deletions
14
setup.py
14
setup.py
|
|
@ -6,7 +6,7 @@ from setuptools import setup, find_packages
|
|||
|
||||
|
||||
if sys.version_info < (3, 5):
|
||||
raise NotImplementedError("Sorry, you need at least Python 3.5 for use paramecio.")
|
||||
raise NotImplementedError("Sorry, you need at least Python 3.5 for use paramecio2.")
|
||||
|
||||
#import paramecio
|
||||
# Pillow should be installed after if you need ImageField
|
||||
|
|
@ -18,12 +18,12 @@ setup(name='paramecio',
|
|||
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/paramecio2fm/',
|
||||
packages=['paramecio', 'paramecio.i18n', 'paramecio.settings'],
|
||||
url='https://bitbucket.org/paramecio/paramecio2fm/',
|
||||
packages=['paramecio2'],
|
||||
include_package_data=True,
|
||||
install_requires=['bottle', 'flask', 'pymysql', 'sqlalchemy', 'colorama'],
|
||||
install_requires=['flask', 'pymysql', 'sqlalchemy', 'colorama'],
|
||||
entry_points={'console_scripts': [
|
||||
'paramecio = paramecio.console:start',
|
||||
'paramecio2 = paramecio2.console:start',
|
||||
]},
|
||||
license='GPLV3',
|
||||
platforms = 'any',
|
||||
|
|
@ -37,11 +37,9 @@ 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.7',
|
||||
'Programming Language :: Python :: 3.8'
|
||||
'Programming Language :: Python :: 3.6'
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue