Skip to content
This repository has been archived by the owner on Nov 10, 2018. It is now read-only.

Commit

Permalink
Merge pull request #29 from escapewindow/master
Browse files Browse the repository at this point in the history
doc updates
  • Loading branch information
escapewindow committed Jun 25, 2015
2 parents 238872d + c1ef2c2 commit c44435c
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ This is in the same spirit of other frameworks that allow for discrete
targets, tasks, or actions: make, maven, ansible, and many more.


Install
=======

# This will automatically bring in all requirements.
pip install scriptharness

# To do a full install with docs/testing requirements,
pip install -r requirements.txt


Running unit tests
==================

Expand Down
12 changes: 12 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@ Scriptharness actions allow for:

This is in the same spirit of other frameworks that allow for discrete targets, tasks, or actions: make, maven, ansible, and many more.

#######
Install
#######

::

# This will automatically bring in all requirements.
pip install scriptharness

# To do a full install with docs/testing requirements,
pip install -r requirements.txt

##################
Running unit tests
##################
Expand Down
12 changes: 12 additions & 0 deletions docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@ Scriptharness actions allow for:

This is in the same spirit of other frameworks that allow for discrete targets, tasks, or actions: make, maven, ansible, and many more.

#######
Install
#######

::

# This will automatically bring in all requirements.
pip install scriptharness

# To do a full install with docs/testing requirements,
pip install -r requirements.txt

##################
Running unit tests
##################
Expand Down
12 changes: 12 additions & 0 deletions docs/README.rst.j2
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@ Scriptharness actions allow for:

This is in the same spirit of other frameworks that allow for discrete targets, tasks, or actions: make, maven, ansible, and many more.

#######
Install
#######

::

# This will automatically bring in all requirements.
pip install scriptharness

# To do a full install with docs/testing requirements,
pip install -r requirements.txt

##################
Running unit tests
##################
Expand Down
3 changes: 2 additions & 1 deletion docs/build_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ def main():
build_readme_rst()
build_releasenotes_rst()
build_quickstart()
subprocess.check_call(["make", "html"])
subprocess.check_call(["make", "clean", "html"])
subprocess.check_call(["make", "dirhtml"])
subprocess.check_call(["make", "text"])
subprocess.check_call(["cp", "_build/text/README.txt", "../README"])
if os.path.exists("artifacts"):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def read(fname):
long_description=read('README'),
author='Aki Sasaki',
author_email='aki@escapewindow.com',
url='https://github.com/scriptharness/scriptharness',
url='https://github.com/scriptharness/python-scriptharness',
license='MPL2',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
Expand Down

0 comments on commit c44435c

Please sign in to comment.