Trisurf Monte Carlo simulator
Samo Penic
2016-05-24 f4a437c36aa53b701466328cba05ac4a34151b63
Added automated python script system-wide installation in build.sh
1 files modified
2 files added
14 ■■■■■ changed files
build.sh 4 ●●● patch | view | raw | blame | history
python/MANIFEST.in 1 ●●●● patch | view | raw | blame | history
python/setup.py 9 ●●●●● patch | view | raw | blame | history
build.sh
@@ -8,4 +8,6 @@
make clean
make
sudo make install
cd python
sudo python3 setup.py install
cd ..
python/MANIFEST.in
New file
@@ -0,0 +1 @@
recursive-include trisurf *.py
python/setup.py
New file
@@ -0,0 +1,9 @@
from distutils.core import setup
setup(name="trisurf", version="0.1a",
description="Python trisurf-ng managing scripts for organized multiple runs of simultations",
author="Samo Penic",
author_email="samo.penic@gmail.com",
url="",
packages=["trisurf"]
)