summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2017-01-04 23:35:51 +0100
committerOliver Poignant <oliver@poignant.se>2017-01-04 23:35:51 +0100
commit72e509fe66ea7f92bc34ff75b63bc8af76ad5195 (patch)
treed9f6d3b778f9c6a2b561209d1b8ed0aaca3f55ed
parent647e2bf9586e90bdd48eeb4f0a42c1211badaa11 (diff)
downloadGit-Auto-Deploy-72e509fe66ea7f92bc34ff75b63bc8af76ad5195.zip
Git-Auto-Deploy-72e509fe66ea7f92bc34ff75b63bc8af76ad5195.tar.gz
Git-Auto-Deploy-72e509fe66ea7f92bc34ff75b63bc8af76ad5195.tar.bz2
Adding missing dependeicies. Version bump.
-rw-r--r--platforms/debian/stdeb/control2
-rw-r--r--setup.py6
2 files changed, 5 insertions, 3 deletions
diff --git a/platforms/debian/stdeb/control b/platforms/debian/stdeb/control
index c7b8e16..5135f2e 100644
--- a/platforms/debian/stdeb/control
+++ b/platforms/debian/stdeb/control
@@ -2,7 +2,7 @@ Source: git-auto-deploy
Maintainer: Oliver Poignant <oliver@poignant.se>
Section: python
Priority: optional
-Build-Depends: python-all (>= 2.6.6-3), debhelper (>= 7), python-setuptools (>= 0.6), git (>= 2), python-lockfile (>= 0.8), python-twisted (>= 13.2.0), python-autobahn (>= 0.5.14)
+Build-Depends: python-all (>= 2.6.6-3), debhelper (>= 7), python-setuptools (>= 0.6), git (>= 2), python-lockfile (>= 0.8), python-twisted (>= 13.2), python-autobahn (>= 0.5)
Standards-Version: 3.9.1
diff --git a/setup.py b/setup.py
index f23f74b..45dc4ad 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ wwwroot_files = package_files(package_path, "wwwroot")
data_files = package_files(package_path, "data")
setup(name='git-auto-deploy',
- version='0.10',
+ version='0.11',
url='https://github.com/olipo186/Git-Auto-Deploy',
author='Oliver Poignant',
author_email='oliver@poignant.se',
@@ -34,7 +34,9 @@ setup(name='git-auto-deploy',
]
},
install_requires=[
- 'lockfile'
+ 'lockfile',
+ 'autobahn',
+ 'twisted'
],
description = "Deploy your GitHub, GitLab or Bitbucket projects automatically on Git push events or webhooks.",
long_description = "GitAutoDeploy consists of a HTTP server that listens for Web hook requests sent from GitHub, GitLab or Bitbucket servers. This application allows you to continuously and automatically deploy you projects each time you push new commits to your repository."