summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 4e696be1651b29abe9d4d4bacde185c00fe9cf2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(name='git-auto-deploy',
      version='0.4',
      url='https://github.com/olipo186/Git-Auto-Deploy',
      author='Oliver Poignant',
      author_email='oliver@poignant.se',
      packages = find_packages(),
      package_data={'gitautodeploy': ['data/*']},
      entry_points={
          'console_scripts': [
              '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."
)