Added setup.py

This commit is contained in:
Antonio de la Rosa 2015-12-10 15:51:13 +01:00
parent ef0f9e5100
commit ac27d16cee
73 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#!/usr/bin/python3
from paramecio.index import create_app, run_app
app=create_app()
if __name__ == "__main__":
run_app(app)

View file

@ -0,0 +1,7 @@
#!/usr/bin/python3
from paramecio.cromosoma.dbadmin import start
start()