diff options
author | Oliver Poignant <oliver@poignant.se> | 2016-03-06 23:28:01 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2016-03-06 23:28:01 +0100 |
commit | cb4e95bcaeef4c1e8fc75349feb11ccaa3b08327 (patch) | |
tree | 2c47edc5f68fe02563c52275aee224d79077db3a /gitautodeploy | |
parent | 1fcaefe47659877814b2b327f3bd21051e91ef3f (diff) | |
download | Git-Auto-Deploy-cb4e95bcaeef4c1e8fc75349feb11ccaa3b08327.zip Git-Auto-Deploy-cb4e95bcaeef4c1e8fc75349feb11ccaa3b08327.tar.gz Git-Auto-Deploy-cb4e95bcaeef4c1e8fc75349feb11ccaa3b08327.tar.bz2 |
Added structure for config generating script (needed when installing using setup.py or pip)
Diffstat (limited to 'gitautodeploy')
-rw-r--r-- | gitautodeploy/__init__.py | 1 | ||||
-rw-r--r-- | gitautodeploy/cli/__init__.py | 1 | ||||
-rw-r--r-- | gitautodeploy/cli/config.py | 4 |
3 files changed, 6 insertions, 0 deletions
diff --git a/gitautodeploy/__init__.py b/gitautodeploy/__init__.py index 023961a..c8a461c 100644 --- a/gitautodeploy/__init__.py +++ b/gitautodeploy/__init__.py @@ -2,3 +2,4 @@ from wrappers import * from lock import * from parsers import * from gitautodeploy import * +from cli import *
\ No newline at end of file diff --git a/gitautodeploy/cli/__init__.py b/gitautodeploy/cli/__init__.py new file mode 100644 index 0000000..1725ebe --- /dev/null +++ b/gitautodeploy/cli/__init__.py @@ -0,0 +1 @@ +from config import * diff --git a/gitautodeploy/cli/config.py b/gitautodeploy/cli/config.py new file mode 100644 index 0000000..332b03e --- /dev/null +++ b/gitautodeploy/cli/config.py @@ -0,0 +1,4 @@ + + +def generate_config(): + print "Generating config"
\ No newline at end of file |