File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- include README.md
1+ include README.md LICENSE DESCRIPTION.rst LICENSE
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44
55here = 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
99version_file_content = open (os .path .join (here , 'jenkins_cli/version.py' )).read ()
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 = (
You can’t perform that action at this time.
0 commit comments