We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 686e96d commit a6630d5Copy full SHA for a6630d5
2 files changed
jenkins_cli/version.py
@@ -0,0 +1 @@
1
+version = '0.1'
setup.py
@@ -5,13 +5,15 @@
5
with open(os.path.join(here, 'README.md')) as f:
6
README = f.read()
7
8
+exec(open(os.path.join(here, 'jenkins_cli/version.py')).read())
9
+
10
requires = [ 'pbr>=1.3.0',
11
'python-jenkins>=0.4.8',
12
'six>=1.9.0' ]
13
14
setup(
15
name='jenkins-cli',
- version='0.1',
16
+ version=version,
17
description='Commandline interface for Jenkins',
18
long_description=README,
19
author='Denys Levchenko',
0 commit comments