Skip to content

Commit ef57a5c

Browse files
committed
Merge pull request #22 from LD250/pypi-release
resolves #8
2 parents 0255593 + 491e5b4 commit ef57a5c

4 files changed

Lines changed: 33 additions & 3 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include README.md
1+
include README.md LICENSE README.rst LICENSE

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Python ver: 2.7, 3.4, 3.5
2121
# Installation:
2222

2323
```bash
24-
pip isntall
24+
pip isntall jenkins-cli
2525
```
2626

2727
or

README.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Jenkins command line interface
2+
==============================
3+
**Based on**
4+
5+
python-jenkins: https://github.com/openstack/python-jenkins
6+
7+
**Tested on**
8+
9+
Jenkins ver: 1.565, 1.655
10+
11+
Python ver: 2.7, 3.4, 3.5
12+
13+
Commands overview:
14+
------------------
15+
:jobs: Show all jobs and their statuses
16+
:queue: Show builds queue
17+
:building: Build executor status
18+
:start: Start job
19+
:info: Job info
20+
:setbranch: Set VCS branch (Mercurial or Git)
21+
:stop: Stop job
22+
:console: Show console for the build
23+
:builds: Show builds for the job
24+
:changes: Show build's changes
25+
26+
Documentation and examples:
27+
https://github.com/LD250/jenkins-cli-python
28+

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55
here = os.path.abspath(os.path.dirname(__file__))
6-
with open(os.path.join(here, 'README.md')) as f:
6+
with open(os.path.join(here, 'README.rst')) as f:
77
README = f.read()
88

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

0 commit comments

Comments
 (0)