-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup, Extension
if 'STK_DIR' in os.environ:
stk_dir = os.environ['STK_DIR']
else:
stk_dir = os.environ["HOME"]+"/.local"
# Get long description
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "sounderfeit",
version = "0.0.1",
author = "Stephen Sinclair",
author_email = "radarsat1@gmail.com",
description = ("A sound synthesizer based on a conditional autoencoder."),
license = "BSD",
keywords = "audio",
url = "http://gitlab.com/sinclairs/sounderfeit",
packages=[],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Audio",
"License :: OSI Approved :: BSD License",
],
ext_modules=[
Extension("sounderfeit/soundersynth", ["sounderfeit/soundersynth.cpp"],
libraries = ["boost_python-py35","stk"],
include_dirs = [stk_dir + "/include/stk"],
library_dirs = [stk_dir + "/lib"],
)
],
test_suite="tests",
)