Skip to content

Commit

Permalink
chore: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrx committed Dec 16, 2020
1 parent 8c81c03 commit ec925a6
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
from setuptools import setup

setup(name='rancher-gitlab-deploy',
version='1.5',
description='Command line tool to ease updating services in Rancher from your GitLab CI pipeline',
url='https://github.com/cdrx/rancher-gitlab-deploy',
author='cdrx',
license='MIT',
packages=['rancher_gitlab_deploy'],
setup(
name="rancher-gitlab-deploy",
version="1.7",
description="Command line tool to ease updating services in Rancher from your GitLab CI pipeline",
url="https://github.com/cdrx/rancher-gitlab-deploy",
author="cdrx",
license="MIT",
packages=["rancher_gitlab_deploy"],
zip_safe=False,
install_requires=[
'click',
'requests',
'colorama'
"click",
"requests",
"colorama",
],
entry_points = {
'console_scripts': ['rancher-gitlab-deploy=rancher_gitlab_deploy.cli:main'],
}
entry_points={
"console_scripts": [
"rancher-gitlab-deploy=rancher_gitlab_deploy.cli:main",
],
},
)

0 comments on commit ec925a6

Please sign in to comment.