1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: fix flat layout choking on debian/ directory.
This patch will hint the pyproject.toml to search explicitly for the pyfaidx
package in the source tree. Upstream counts on a flat layout, but this
expectation is broken as soon as in Debian context, the debian/ directory is
part of the equation. This is thus a Debian specific fix.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: not-needed
Last-Update: 2023-07-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- python-pyfaidx.orig/pyproject.toml
+++ python-pyfaidx/pyproject.toml
@@ -41,3 +41,6 @@
[tool.setuptools_scm]
local_scheme = "no-local-version"
+
+[tool.setuptools]
+packages = ["pyfaidx"]
|