1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Explicitly set packages field for right file
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2022-10-23
--- lamassemble.orig/setup.py
+++ lamassemble/setup.py
@@ -1,4 +1,5 @@
import setuptools
+from setuptools import find_packages
commitInfo = " (grafted, HEAD, tag: 1.7.4)".strip("( )").split()
version = commitInfo[commitInfo.index("tag:") + 1].rstrip(",")
@@ -6,6 +7,7 @@
setuptools.setup(
name="lamassemble",
version=version,
+ packages=find_packages(),
description='Merge overlapping "long" DNA reads into a consensus sequence',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
|