We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ac8933 commit 9585fd6Copy full SHA for 9585fd6
setup.py
@@ -26,6 +26,11 @@ def package_files(directory):
26
version=version,
27
package_data={"rubato": package_files("rubato/static")},
28
ext_modules=[
29
+ Extension(
30
+ "rubato.c_src.pixel_editor",
31
+ ["rubato/c_src/pixel_editor.py", "rubato/c_src/PixelEditor.cpp"],
32
+ extra_compile_args=["-std=c++14"],
33
+ ),
34
*cythonize(
35
"rubato/**/*.py",
36
exclude=["rubato/__pyinstaller/**/*", "rubato/static/**/*"],
@@ -35,10 +40,5 @@ def package_files(directory):
40
"linetrace": linetrace,
41
},
37
42
),
38
- Extension(
39
- "rubato.c_src.pixel_editor",
- ["rubato/c_src/pixel_editor.py", "rubato/c_src/PixelEditor.cpp"],
- extra_compile_args=["-std=c++14"],
- ),
43
]
44
)
0 commit comments