summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2016-06-13 23:29:05 +0200
committerOliver Poignant <oliver@poignant.se>2016-06-13 23:29:05 +0200
commitc4407c007ab4ac900d6438761f72acae44878054 (patch)
tree654c452f72c2defb124f5eed648d496c244306d4
parentfb67fb63bfe8abbd0e0ac0ab143c05be41d84c9f (diff)
downloadGit-Auto-Deploy-c4407c007ab4ac900d6438761f72acae44878054.zip
Git-Auto-Deploy-c4407c007ab4ac900d6438761f72acae44878054.tar.gz
Git-Auto-Deploy-c4407c007ab4ac900d6438761f72acae44878054.tar.bz2
Adding python-lockfile as dependency for debian package. New version.
-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."
)