Skip to content

Commit

Permalink
Don't install libmrc_pymrc into site-packages as it is already instal…
Browse files Browse the repository at this point in the history
…led in /lib
  • Loading branch information
dagardner-nv committed Dec 27, 2023
1 parent 368fe7a commit acef5c9
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,16 @@
##############################################################################
# - Python package generation ------------------------------------------------

setup(
name="mrc",
description="mrc",
version=versioneer.get_version(),
classifiers=[
"Intended Audience :: Developers", "Programming Language :: Python", "Programming Language :: Python :: 3.10"
],
author="NVIDIA Corporation",
setup_requires=[],
include_package_data=True,
packages=find_namespace_packages(include=["mrc*"], exclude=["tests", "mrc.core.segment.module_definitions"]),
package_data={
"mrc": ["_pymrc/*.so"] # Add the pymrc library for the root package
},
license="Apache",
cmdclass=versioneer.get_cmdclass(),
zip_safe=False)
setup(name="mrc",
description="mrc",
version=versioneer.get_version(),
classifiers=[
"Intended Audience :: Developers", "Programming Language :: Python", "Programming Language :: Python :: 3.10"
],
author="NVIDIA Corporation",
setup_requires=[],
include_package_data=True,
packages=find_namespace_packages(include=["mrc*"], exclude=["tests", "mrc.core.segment.module_definitions"]),
license="Apache",
cmdclass=versioneer.get_cmdclass(),
zip_safe=False)

0 comments on commit acef5c9

Please sign in to comment.