# HG changeset patch # User Emmanouil Theofanis Chourdakis # Date 1519317911 0 # Node ID b11264117ddb8bac10b6c137efaa3baaf0ca1ddf # Parent 521c9b65f738420af724e56a5d4421b619e3a3be added setup.py to allow for 'python setup.py build install' diff -r 521c9b65f738 -r b11264117ddb python/.gitignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/.gitignore Thu Feb 22 16:45:11 2018 +0000 @@ -0,0 +1,4 @@ +build +dist +.*~ +simscene.egg-info diff -r 521c9b65f738 -r b11264117ddb python/setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/setup.py Thu Feb 22 16:45:11 2018 +0000 @@ -0,0 +1,10 @@ +from setuptools import setup + +setup( + name='simscene', + version='0.1', + scripts=['simscene.py'], + author='Emmanouil Chourdakis', + license='GPLv3' +) + diff -r 521c9b65f738 -r b11264117ddb python/simscene.py --- a/python/simscene.py Tue Oct 24 16:53:58 2017 +0100 +++ b/python/simscene.py Thu Feb 22 16:45:11 2018 +0000 @@ -24,7 +24,6 @@ import librosa.display # PySoundfile - import soundfile as sf # Matplotlib