Ready for action, sir!
This commit is contained in:
parent
f9e0bf948e
commit
6009df26de
669 changed files with 95073 additions and 2 deletions
scripts/devSetup
13
scripts/devSetup/dependency.py
Normal file
13
scripts/devSetup/dependency.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
__author__ = u'schmatz'
|
||||
|
||||
from configuration import Configuration
|
||||
|
||||
class Dependency(object):
|
||||
def __init__(self,configuration):
|
||||
assert isinstance(configuration,Configuration)
|
||||
self.config = configuration
|
||||
def download_dependencies(self):
|
||||
raise NotImplementedError
|
||||
def install_dependencies(self):
|
||||
raise NotImplementedError
|
||||
|
Reference in a new issue