Skip to content

Commit

Permalink
Merge pull request #248 from ohadmo/omosafi/pypi-patch-0.4.3
Browse files Browse the repository at this point in the history
[pyclaragenomics] Fix wheel liblogging linkage issue occurred in cp3.5
  • Loading branch information
ohadmo committed Dec 2, 2019
2 parents fbf7a6a + 829284a commit 97b0b70
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pyclaragenomics/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def copy_all_files_in_directory(src, dest, file_ext="*.so"):
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -87,14 +88,14 @@ def copy_all_files_in_directory(src, dest, file_ext="*.so"):
],
library_dirs=["/usr/local/cuda/lib64", get_verified_absolute_path(os.path.join(cga_install_dir, "lib"))],
runtime_library_dirs=["/usr/local/cuda/lib64", os.path.join('$ORIGIN', os.pardir, 'shared_libs')],
libraries=["cudapoa", "cudaaligner", "cudart"],
libraries=["cudapoa", "cudaaligner", "cudart", "logging"],
language="c++",
extra_compile_args=["-std=c++14"],
)
]

setup(name='pyclaragenomics',
version='0.4.0',
version='0.4.3',
description='NVIDIA genomics python libraries and utiliites',
author='NVIDIA Corporation',
url="https://github.com/clara-genomics/ClaraGenomicsAnalysis",
Expand All @@ -106,7 +107,7 @@ def copy_all_files_in_directory(src, dest, file_ext="*.so"):
get_verified_absolute_path(os.path.join(current_dir, 'requirements.txt'))
),
packages=find_packages(where=current_dir),
python_requires='>=3.6',
python_requires='>=3.5',
license='Apache License 2.0',
long_description='Python libraries and utilities for manipulating genomics data',
classifiers=pycga_classifiers,
Expand Down

0 comments on commit 97b0b70

Please sign in to comment.