Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude libbacktrace from our built wheel #110

Merged
merged 2 commits into from
May 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from Cython.Build import cythonize
from setuptools import Extension
from setuptools import find_namespace_packages
from setuptools import find_packages
from setuptools import setup
from setuptools.command.build_ext import build_ext as build_ext_orig

Expand Down Expand Up @@ -237,7 +237,7 @@ def build_js_files(self):
],
license="Apache 2.0",
package_dir={"": "src"},
packages=find_namespace_packages(where="src"),
packages=find_packages(where="src"),
ext_modules=cythonize(
[MEMRAY_EXTENSION],
include_path=["src/memray"],
Expand All @@ -261,5 +261,4 @@ def build_js_files(self):
cmdclass={
"build_ext": BuildMemray,
},
package_data={"memray": ["py.typed"]},
)