diff options
author | Jason W. Bacon <jwb@FreeBSD.org> | 2022-03-25 11:37:29 -0500 |
---|---|---|
committer | Jason W. Bacon <jwb@FreeBSD.org> | 2022-03-25 11:37:29 -0500 |
commit | fad5d1754c6cacc578077dfa752196f3db3271f7 (patch) | |
tree | 6a84f12e080f25cb81096b9c7c9fdf1cedb39dca /biology/py-ont-fast5-api/files/patch-setup.py | |
parent | www/py-django: Deprecate and set to expire (diff) |
biology/py-ont-fast5-api: Update to 4.0.2
Minor bug fix release
Also disabled install of test directory, which was not properly
installed under the package subdir and caused a conflict as a result
PR: 262759
Diffstat (limited to 'biology/py-ont-fast5-api/files/patch-setup.py')
-rw-r--r-- | biology/py-ont-fast5-api/files/patch-setup.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/biology/py-ont-fast5-api/files/patch-setup.py b/biology/py-ont-fast5-api/files/patch-setup.py new file mode 100644 index 000000000000..a29c7326d3b5 --- /dev/null +++ b/biology/py-ont-fast5-api/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2022-03-25 16:23:32 UTC ++++ setup.py +@@ -35,7 +35,7 @@ setup(name=__pkg_name__.replace("_", "-"), + version=get_version(), + url='https://github.com/nanoporetech/{}'.format(__pkg_name__), + install_requires=installation_requirements, +- packages=find_packages(), ++ packages=find_packages(exclude=['test']), + package_data={__pkg_name__: ['vbz_plugin/*.so', 'vbz_plugin/*.dylib', 'vbz_plugin/*.dll']}, + python_requires='>=3.6', + entry_points={'console_scripts': [ |