-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
158 lines (126 loc) · 5.3 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
#! /usr/bin/env python
# NOTE: You can test building wheels locally with
# `python -m build --wheel`
# Then in the `dist` directory, `pip install dawdreamer`
import setuptools
from setuptools import setup, Extension
from setuptools.dist import Distribution
import os
import os.path
from pathlib import Path
import shutil
import platform
import glob
this_dir = os.path.abspath(os.path.dirname(__file__))
def get_dawdreamer_version():
import xml.etree.ElementTree as ET
tree = ET.parse(Path(__file__).parent / 'DawDreamer.jucer')
root = tree.getroot()
version = root.attrib['version']
return version
DAWDREAMER_VERSION = get_dawdreamer_version()
class BinaryDistribution(Distribution):
"""Distribution which always forces a binary package with platform name"""
def has_ext_modules(foo):
return True
ext_modules = []
package_data = []
try:
shutil.copytree('licenses', os.path.join('dawdreamer', 'licenses'))
except Exception as e:
pass
if platform.system() == "Windows":
build_folder = os.path.join(this_dir, "Builds", "VisualStudio2022", "x64", "Release", "Dynamic Library")
shutil.copy(os.path.join(build_folder, 'dawdreamer.dll'), os.path.join('dawdreamer', 'dawdreamer.pyd'))
package_data += ['dawdreamer/dawdreamer.pyd']
elif platform.system() == "Linux":
files = ['dawdreamer/dawdreamer.so']
for file in files:
filepath = os.path.abspath(file)
assert os.path.isfile(filepath), ValueError("File not found: " + filepath)
print('Using compiled files: ', str(files))
package_data += files
elif platform.system() == "Darwin":
build_folder = os.path.join(this_dir, "Builds", "MacOSX", "build", "Release-"+os.environ['ARCHS'])
shutil.copy(os.path.join(build_folder, 'dawdreamer.so'), os.path.join('dawdreamer', 'dawdreamer.so'))
package_data += ['dawdreamer/dawdreamer.so']
else:
raise NotImplementedError(
f"setup.py hasn't been implemented for platform: {platform}."
)
# copy architecture files
def copytree(src, dst, symlinks=False, ignore=None):
if not os.path.exists(dst):
os.makedirs(dst)
for item in os.listdir(src):
s = os.path.join(src, item)
d = os.path.join(dst, item)
if os.path.isdir(s):
copytree(s, d, symlinks, ignore)
else:
if ignore is not None and ignore(os.fspath(src), [item]):
continue
if not os.path.exists(d) or os.stat(s).st_mtime - os.stat(d).st_mtime > 1:
shutil.copy2(s, d)
destination = copytree(os.path.join(this_dir, "thirdparty", "faust", "architecture"),
os.path.join(this_dir, "dawdreamer", "architecture"),
ignore=shutil.ignore_patterns('*.dll', '*.so', '*.html', '*.wav', '*.mp3', '*.png',
'*.jpg', '*.pdf', '*.a', '*.wasm', '*.data'))
# architecture files
architecture_files = list(glob.glob(os.path.join(this_dir, 'dawdreamer/architecture/*'), recursive=True))
if not architecture_files:
raise ValueError("You need to put the architecture directory inside dawdreamer.")
package_data += architecture_files
# Faust libraries
faustlibraries = list(glob.glob(os.path.join(this_dir, 'dawdreamer/faustlibraries/*'), recursive=True))
if not faustlibraries:
raise ValueError("You need to put the faustlibraries repo inside dawdreamer.")
package_data += faustlibraries
package_data += list(glob.glob('dawdreamer/licenses/*', recursive=True))
# Every item in package_data should be inside the dawdreamer directory.
# Then we make the paths relative to this directory.
package_data = [os.path.relpath(os.path.abspath(a), os.path.join(this_dir, "dawdreamer")).replace('\\', '/') for a in package_data]
print('package_data: ', package_data)
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name='dawdreamer',
url='https://github.com/DBraun/DawDreamer',
project_urls={
'Documentation': 'https://dirt.design/DawDreamer',
'Source': 'https://github.com/DBraun/DawDreamer',
},
version=DAWDREAMER_VERSION,
author='David Braun',
author_email='braun@ccrma.stanford.edu',
description='An audio-processing Python library supporting core DAW features',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python",
"Topic :: Multimedia :: Sound/Audio",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
],
keywords='audio music sound',
python_requires=">=3.8",
install_requires=[],
packages=setuptools.find_packages(),
py_modules=['dawdreamer'],
include_package_data=True,
package_data={
"": package_data
},
zip_safe=False,
distclass=BinaryDistribution,
ext_modules=ext_modules
)