docs building

This commit is contained in:
fawce
2012-02-08 16:01:39 -05:00
parent 6377c76208
commit ef39dae85a
21 changed files with 1087 additions and 13 deletions
-31
View File
@@ -1,31 +0,0 @@
#!/bin/bash
#setup virtualenvironment
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python2.7
if [ ! -d $HOME/.venvs ]; then
mkdir $HOME/.venvs
fi
export WORKON_HOME=$HOME/.venvs
source /usr/local/bin/virtualenvwrapper.sh
#create the scientific python virtualenv and copy to provide qsim base
mkvirtualenv --no-site-packages scientific_base
workon scientific_base
./scripts/ordered_pip.sh ./scripts/requirements_sci.txt
deactivate
#re-base qsim
#rmvirtualenv qsim
cpvirtualenv scientific_base qsim
workon qsim
./scripts/ordered_pip.sh ./scripts/requirements.txt
./scripts/ordered_pip.sh ./scripts/requirements_dev.txt
#run all the tests in test
nosetests --with-xcoverage --with-xunit --cover-erase --cover-package=qsim
pylint -f parseable . | tee pylint.out
#run sloccount analysis
sloccount --wide --details ./ > sloccount.sc
deactivate
-11
View File
@@ -1,11 +0,0 @@
#!/bin/bash
echo $hash
while read line
do
if [[ $line != \#* ]] ; then
#echo $line
pip install $line
fi
done < $1
echo "Final line count is: $a";
-3
View File
@@ -1,3 +0,0 @@
#zeromq related
pyzmq==2.1.11
-31
View File
@@ -1,31 +0,0 @@
ipython==0.12
# For debugger
fancycompleter==0.2
pyrepl==0.8.2
Pygments==1.4
pdbpp==0.7.2
# Testing
unittest2
nose==1.1.2
coverage==3.5.1
mock==0.7.2
nosexcover==1.0.7
pylint==0.25.1
# Documentation
docutils==0.8.1
Sphinx==1.1.2
# Task running
Paver==1.0.5
Paved==0.3
# Testing
nose==1.1.2
coverage==3.5.1
mock==0.7.2
nosexcover==1.0.7
pylint==0.25.1
-18
View File
@@ -1,18 +0,0 @@
#date related
pytz==2011n
python-dateutil==1.5
#core scientific python
numpy==1.6.1
scipy==0.10.0
matplotlib==1.1.0
#http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.0/matplotlib-1.1.0.tar.gz
numexpr==2.0.1
Cython==0.15.1
tables==2.3.1
scikits.statsmodels==0.3.1
pandas==0.7.0rc1
#zeromq related
pyzmq==2.1.11