forked from r9y9/pysptk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
158 lines (135 loc) · 4.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# coding: utf-8
from __future__ import with_statement, print_function, absolute_import
from setuptools import setup, find_packages, Extension
import setuptools.command.develop
import setuptools.command.build_py
from distutils.version import LooseVersion
import numpy as np
import os
from glob import glob
from os.path import join
import subprocess
version = '0.1.11'
# Adapted from https://github.com/pytorch/pytorch
cwd = os.path.dirname(os.path.abspath(__file__))
if os.getenv('PYSPTK_BUILD_VERSION'):
version = os.getenv('PYSPTK_BUILD_VERSION')
else:
try:
sha = subprocess.check_output(
['git', 'rev-parse', 'HEAD'], cwd=cwd).decode('ascii').strip()
version += '+' + sha[:7]
except subprocess.CalledProcessError:
pass
except IOError: # FileNotFoundError for python 3
pass
class build_py(setuptools.command.build_py.build_py):
def run(self):
self.create_version_file()
setuptools.command.build_py.build_py.run(self)
@staticmethod
def create_version_file():
global version, cwd
print('-- Building version ' + version)
version_path = os.path.join(cwd, 'pysptk', 'version.py')
with open(version_path, 'w') as f:
f.write("__version__ = '{}'\n".format(version))
class develop(setuptools.command.develop.develop):
def run(self):
build_py.create_version_file()
setuptools.command.develop.develop.run(self)
cmdclass = {"build_py": build_py, "develop": develop}
min_cython_ver = '0.21.0'
try:
import Cython
ver = Cython.__version__
_CYTHON_INSTALLED = ver >= LooseVersion(min_cython_ver)
except ImportError:
_CYTHON_INSTALLED = False
try:
if not _CYTHON_INSTALLED:
raise ImportError('No supported version of Cython installed.')
from Cython.Distutils import build_ext
cython = True
except ImportError:
cython = False
if cython:
ext = '.pyx'
cmdclass['build_ext'] = build_ext
else:
ext = '.c'
if not os.path.exists(join("pysptk", "_sptk" + ext)):
raise RuntimeError("Cython is required to generate C code.")
# SPTK sources
src_top = join("lib", "SPTK")
src_bin_top = join(src_top, "bin")
swipe_src = [
join(src_bin_top, "pitch", "swipe", "swipe.c"),
join(src_bin_top, "pitch", "swipe", "vector.c"),
]
rapt_src = [
join(src_bin_top, "pitch", "snack", "jkGetF0.c"),
join(src_bin_top, "pitch", "snack", "sigproc.c"),
]
sptklib_src = glob(join(src_top, "lib", "*.c"))
sptk_src = glob(join(src_bin_top, "*", "_*.c"))
# collect all sources
sptk_all_src = sptk_src + sptklib_src + swipe_src + rapt_src
# Filter ignore list
ignore_bin_list = [join(src_bin_top, "wavjoin"), join(src_bin_top, "wavsplit"),
join(src_bin_top, "vc")]
for ignore in ignore_bin_list:
sptk_all_src = list(
filter(lambda s: not s.startswith(ignore), sptk_all_src))
# define core cython module
ext_modules = [Extension(
name="pysptk._sptk",
sources=[join("pysptk", "_sptk" + ext)] + sptk_all_src,
include_dirs=[np.get_include(), join(
os.getcwd(), "lib", "SPTK", "include")],
language="c",
extra_compile_args=['-std=c99']
)]
setup(
name='pysptk',
version=version,
description='A python wrapper for Speech Signal Processing Toolkit (SPTK)',
author='Ryuichi Yamamoto',
author_email='[email protected]',
url='https://github.com/r9y9/pysptk',
license='MIT',
packages=find_packages(),
package_data={'': ['example_audio_data/*']},
ext_modules=ext_modules,
cmdclass=cmdclass,
install_requires=[
'numpy >= 1.8.0',
'six',
'decorator'
],
tests_require=['nose', 'coverage'],
extras_require={
'docs': ['numpydoc', 'sphinx_rtd_theme', 'seaborn'],
'test': ['nose'],
'develop': ['cython >= ' + min_cython_ver],
},
classifiers=[
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
],
keywords=["SPTK"]
)