Added setup.py
8
MANIFEST.in
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
include paramecio/*.py
|
||||||
|
include README.md
|
||||||
|
include LICENSE
|
||||||
|
include REQUIREMENTS
|
||||||
|
recursive-include paramecio/citoplasma *
|
||||||
|
recursive-include paramecio/frontend *
|
||||||
|
recursive-include paramecio/cromosoma *
|
||||||
|
recursive-include paramecio/settings *
|
||||||
5
README.rst
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
==========================================================
|
||||||
|
Paramecio is a simple framework based in bottle and mako.
|
||||||
|
==========================================================
|
||||||
|
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 500 B After Width: | Height: | Size: 500 B |
|
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 332 B |
|
Before Width: | Height: | Size: 476 B After Width: | Height: | Size: 476 B |
|
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 5 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 528 KiB After Width: | Height: | Size: 528 KiB |
42
setup.py
Normal file
|
|
@ -0,0 +1,42 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
|
if sys.version_info < (3, 3):
|
||||||
|
raise NotImplementedError("Sorry, you need at least Python 3.3 to use paramecio.")
|
||||||
|
|
||||||
|
#import paramecio
|
||||||
|
|
||||||
|
setup(name='paramecio',
|
||||||
|
version='0.1.0b1',
|
||||||
|
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 ',
|
||||||
|
author='Antonio de la Rosa Caballero',
|
||||||
|
author_email='webmaster@web-t-sys.com',
|
||||||
|
url='http://paramecioproject.com/',
|
||||||
|
packages=['paramecio'],
|
||||||
|
include_package_data=True,
|
||||||
|
install_requires=['bottle', 'mako', 'passlib', 'bcrypt'],
|
||||||
|
entry_points={'console_scripts': [
|
||||||
|
'paramecio = paramecio.console:start',
|
||||||
|
]},
|
||||||
|
license='GPLV2',
|
||||||
|
platforms = 'any',
|
||||||
|
classifiers=['Development Status :: 1 - Beta',
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'License :: OSI Approved :: GPLV2 License',
|
||||||
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
|
||||||
|
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
|
||||||
|
'Topic :: Internet :: WWW/HTTP :: WSGI',
|
||||||
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
|
||||||
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
|
||||||
|
'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',
|
||||||
|
],
|
||||||
|
)
|
||||||