Skip to content

Commit

Permalink
Merge pull request #3 from Exabyte-io/dev
Browse files Browse the repository at this point in the history
Repair how the .so shared libraries are included in the python package
  • Loading branch information
triplepoint authored Oct 26, 2020
2 parents 72644c3 + 43c2cc3 commit ed2676a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
keywords=['pbs'],
packages=find_packages(exclude=['tests*']),
data_files=[
(os.path.join(site_packages_path, 'pbs'), ['_pbs.so']),
(os.path.join(site_packages_path, 'pbs'), ['_pbs.cpython-38-x86_64-linux-gnu.so'])
(os.path.join(site_packages_path, 'pbs'), [
'pbs/_pbs.so',
'pbs/_pbs.cpython-38-x86_64-linux-gnu.so'
]),
],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*,<3.9',
classifiers=[
Expand Down

0 comments on commit ed2676a

Please sign in to comment.