moved setup to pysource

This commit is contained in:
2015-09-13 17:57:03 +01:00
parent 289441aa7a
commit 075ad57b9b
2 changed files with 0 additions and 41 deletions
-12
View File
@@ -1,12 +0,0 @@
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
-29
View File
@@ -1,29 +0,0 @@
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(),
setup_requires=read('requirements.txt'),
install_requires=['numpy'],
long_description=read('README'),
)