add license, requirements, setup and install scripts

This commit is contained in:
Brian Delhaisse
2019-03-16 01:13:24 +01:00
parent a5758ff6aa
commit 6cf8659465
15 changed files with 723 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/bin/sh
# This bash installs the 'sloccount' command which counts source lines of code, and provides several statisticsabout this last one.
# Once installed, go to the pyrobolearn package and type:
# $ sloccount *.py */*.py
# define variables
origindir=$PWD
scriptdir=`dirname $0`
# install package
sudo apt install sloccount -y
# compute statistics for pyrobolearn software
cd $scriptdir; cd ..
sloccount *.py */*.py
# return to the original directory
cd $origindir