Skip to content

Commit

Permalink
Merge pull request #22 from LD250/pypi-release
Browse files Browse the repository at this point in the history
resolves #8
  • Loading branch information
LD250 committed Apr 1, 2016
2 parents 0255593 + 491e5b4 commit ef57a5c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include README.md
include README.md LICENSE README.rst LICENSE
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Python ver: 2.7, 3.4, 3.5
# Installation:

```bash
pip isntall
pip isntall jenkins-cli
```

or
Expand Down
28 changes: 28 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Jenkins command line interface
==============================
**Based on**

python-jenkins: https://github.com/openstack/python-jenkins

**Tested on**

Jenkins ver: 1.565, 1.655

Python ver: 2.7, 3.4, 3.5

Commands overview:
------------------
:jobs: Show all jobs and their statuses
:queue: Show builds queue
:building: Build executor status
:start: Start job
:info: Job info
:setbranch: Set VCS branch (Mercurial or Git)
:stop: Stop job
:console: Show console for the build
:builds: Show builds for the job
:changes: Show build's changes

Documentation and examples:
https://github.com/LD250/jenkins-cli-python

4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()

version_file_content = open(os.path.join(here, 'jenkins_cli/version.py')).read()
Expand All @@ -28,6 +28,8 @@
description='Commandline interface for Jenkins',
long_description=README,
author='Denys Levchenko',
author_email='denis.levtchenko@gmail.com',
url='https://github.com/LD250/jenkins-cli-python',
keywords='jenkins, commandline, cli',
license='http://opensource.org/licenses/MIT',
classifiers=(
Expand Down

0 comments on commit ef57a5c

Please sign in to comment.