Begun creating setup script for python components

This commit is contained in:
2015-09-12 13:39:04 +01:00
parent 13e1028f69
commit 81d4c54401
5 changed files with 483 additions and 574 deletions
+12
View File
@@ -0,0 +1,12 @@
funcsigs==0.4
matplotlib==1.4.3
mock==1.3.0
nose==1.3.7
numpy==1.9.2
pbr==1.7.0
pyparsing==2.0.3
pysndfile==0.2.11
python-dateutil==2.4.2
pytz==2015.4
scipy==0.16.0
six==1.9.0
+3 -1
View File
@@ -1,4 +1,6 @@
PYTHONPATH="/Users/sam/Documents/Projects/SP_FYP_MAX7/code/pysource"
export PYTHONPATH
cd /Users/sam/Documents/Projects/SP_FYP_MAX7/code/
/Users/sam/.pyenv/shims/python ./test.py
source ./bin/activate
echo `which python`
python ./test.py
+28
View File
@@ -0,0 +1,28 @@
import os
from setuptools import setup, find_packages
def read(fname):
"""
Utility function to read the README file.
Used for the long_description. It's nice, because now 1) we have a top level
README file and 2) it's easier to type in the README file than to put a raw
string in below ...
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="SP_Final_Year_Project",
version="0.1",
author="Sam Perry",
author_email="u1265119@unimail.hud.ac.uk",
description=("Python component of the corpus based concatenative "
"synthesis final year project"),
license="GPL",
keywords="concatenative synthesis audio",
url="https://github.com/Pezz89/FYP_Max_prototype",
packages=find_packages(),
install_requires=read('requirements'),
long_description=read('README'),
)
+439 -572
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
/Users/sam/AudioDatabases/IRCAMSamples_mono/sbassoon.mono.aiff 1 44100 6733.742
/Users/sam/AudioDatabases/IRCAMSamples_mono/scontrabass.mono.aiff 1 44100 5499.093