Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Earlier it was mandatory to provider --build-repo option to restraint #93

Merged
merged 4 commits into from
Feb 27, 2015
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update readme and setup.py
  • Loading branch information
gsr-shanks committed Feb 26, 2015
commit b6ae3fc7c4fc37a54b1a58f427249cf5457fc772
11 changes: 10 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,18 @@ Installing pre-requisities

.. code-block:: bash

]# yum install -y python-setuptools autoconf gcc python-devel

Download and install koji from
http://koji.fedoraproject.org/koji/packageinfo?packageID=1181

]# git clone https://github.com/gsr-shanks/nexus.git
]# cd nexus
]# python setup.py
]# python setup.py install

]# python nexus/utils/restraint_repo_finder.py

]# yum install -y restraint restraint-client

Alternately you can download the rpm version of nexus at
https://mrniranjan.fedorapeople.org/
Expand Down
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ def readme():
packages=find_packages(),
scripts=['bin/nexus'],
install_requires=[
'paramiko',
'ConfigParser',
'simplejson',
'pbr',
'wget',
'glob2',
'python-jenkins',
'pbr'
'paramiko',
'argparse',
'requests',
'simplejson',
'ConfigParser',
'BeautifulSoup',
'python-jenkins'
],
include_package_data=True
)