-
Notifications
You must be signed in to change notification settings - Fork 111
/
setup.py
135 lines (119 loc) · 4.39 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
#!/usr/bin/env python
import os
from platform import architecture, machine
from setuptools import setup
from setuptools.command.test import test as TestCommand
import sys
# environment variables for cross-platform package creation
platform = os.environ.get('PYSOUNDFILE_PLATFORM', sys.platform)
architecture0 = os.environ.get('PYSOUNDFILE_ARCHITECTURE')
if architecture0 is None:
# follow the same decision tree as in soundfile.py after
# _find_library('sndfile') fails:
if sys.platform == 'win32':
architecture0 = architecture()[0] # 64bit or 32bit
else:
architecture0 = machine() # x86_64 or arm64
if platform == 'darwin':
libname = 'libsndfile_' + architecture0 + '.dylib'
elif platform == 'win32':
libname = 'libsndfile_' + architecture0 + '.dll'
elif platform == 'linux':
libname = 'libsndfile_' + architecture0 + '.so'
else:
libname = None
if libname and os.path.isdir('_soundfile_data'):
packages = ['_soundfile_data']
package_data = {'_soundfile_data': [libname, 'COPYING']}
zip_safe = False
else:
packages = None
package_data = None
zip_safe = True
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
cmdclass = {'test': PyTest}
try:
from wheel.bdist_wheel import bdist_wheel
except ImportError:
pass
else:
class bdist_wheel_half_pure(bdist_wheel):
"""Create OS-dependent, but Python-independent wheels."""
def get_tag(self):
pythons = 'py2.py3'
if platform == 'darwin':
if architecture0 == 'x86_64':
oses = 'macosx_10_9_x86_64'
else:
oses = 'macosx_11_0_arm64'
elif platform == 'win32':
if architecture0 == '32bit':
oses = 'win32'
else:
oses = 'win_amd64'
elif platform == 'linux':
# using the centos:7 runner with glibc2.17:
oses = 'manylinux_2_17_{}'.format(architecture0)
else:
pythons = 'py2.py3'
oses = 'any'
return pythons, 'none', oses
cmdclass['bdist_wheel'] = bdist_wheel_half_pure
with open('soundfile.py') as f:
for line in f:
if line.startswith('__version__'):
_, soundfile_version = line.split('=')
soundfile_version = soundfile_version.strip(' "\'\n')
break
else:
raise RuntimeError("Could not find __version__ in soundfile.py")
setup(
name='soundfile',
version=soundfile_version,
description='An audio library based on libsndfile, CFFI and NumPy',
author='Bastian Bechtold',
author_email='[email protected]',
url='https://github.com/bastibe/python-soundfile',
keywords=['audio', 'libsndfile'],
py_modules=['soundfile'],
packages=packages,
package_data=package_data,
zip_safe=zip_safe,
license='BSD 3-Clause License',
setup_requires=["cffi>=1.0"],
install_requires=['cffi>=1.0', 'numpy'],
cffi_modules=["soundfile_build.py:ffibuilder"],
extras_require={'numpy': []}, # This option is no longer relevant, but the empty entry must be left in to avoid breaking old build scripts.
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Multimedia :: Sound/Audio',
],
long_description=open('README.rst').read(),
long_description_content_type="text/x-rst",
tests_require=['pytest'],
cmdclass=cmdclass,
)