File: set_package_field.patch

package info (click to toggle)
lamassemble 1.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,288 kB
  • sloc: python: 679; sh: 63; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 677 bytes parent folder | download
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",