summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--platforms/debian/stdeb/control2
-rw-r--r--setup.py5
2 files changed, 5 insertions, 2 deletions
diff --git a/platforms/debian/stdeb/control b/platforms/debian/stdeb/control
index 6777f2a..2f70137 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)
+Build-Depends: python-all (>= 2.6.6-3), debhelper (>= 7), python-setuptools (>= 0.6), git (>= 2), python-lockfile (>= 0.8)
Standards-Version: 3.9.1
diff --git a/setup.py b/setup.py
index b5ce495..c35b2e0 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(name='git-auto-deploy',
- version='0.2.8',
+ version='0.2.9',
url='https://github.com/olipo186/Git-Auto-Deploy',
author='Oliver Poignant',
author_email='oliver@poignant.se',
@@ -12,6 +12,9 @@ setup(name='git-auto-deploy',
'git-auto-deploy = gitautodeploy.__main__:main'
]
},
+ install_requires=[
+ 'lockfile'
+ ],
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."
)