Commit b107f2a8 authored by William Fong's avatar William Fong

attemting to standardize installation procedures

parent eae425fa
#! /usr/bin/bash
current_branch=$(git branch | sed -n '/\* /s///p')
lightcurvedb_path="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" # Will fail on symlinked directories!
echo "Installing lightcurvedb on branch ${current_branch}"
git remote update
cd $lightcurvedb_path
pip install --user .
#! /usr/bin/bash
current_branch=$(git branch | sed -n '/\* /s///p')
lightcurvedb_path="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" # Will fail on symlinked directories!
script_path="${lightcurvedb_path}/install.sh"
echo "Installing lightcurvedb: ${current_branch} via pdodev with ${script_path}"
ssh -t pdodev "./${script_path}"
......@@ -43,5 +43,5 @@ setuptools.setup(
'Programming Language :: Python :: 3',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
requirements=requirements
install_requires=requirements,
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment