Skip to content

Commit

Permalink
new dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Sep 13, 2016
1 parent 48ca4db commit 820b536
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions requirements.txt
@@ -1,4 +1,5 @@
appier
appier_extras
jinja2
pillow
reportlab
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -36,6 +36,7 @@
},
install_requires = [
"appier",
"appier_extras",
"jinja2",
"pillow",
"reportlab"
Expand Down
5 changes: 4 additions & 1 deletion src/colony_print/main.py
Expand Up @@ -2,14 +2,17 @@
# -*- coding: utf-8 -*-

import appier
import appier_extras

class ColonyPrintApp(appier.APIApp):

def __init__(self, *args, **kwargs):
appier.APIApp.__init__(
self,
name = "colony_print",
service = True,
parts = (
appier_extras.AdminPart,
),
*args, **kwargs
)
self.nodes = dict()
Expand Down

0 comments on commit 820b536

Please sign in to comment.