summaryrefslogtreecommitdiff
path: root/MANIFEST.in
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2021-11-10 19:11:35 -0600
committerDavid Gibson <david@gibson.dropbear.id.au>2021-11-11 14:34:51 +1100
commit23b56cb7e18992650c79a04c9e4e3f2740bc1fbd (patch)
tree363e29f2432274227523b065fba92dbec8012b08 /MANIFEST.in
parent69a760747d8d9d1c5dcceebc05e868e1eaf13a2b (diff)
downloaddevice-tree-compiler-23b56cb7e18992650c79a04c9e4e3f2740bc1fbd.tar.gz
pylibfdt: Move setup.py to the top level
Using 'pip' and several setup.py sub-commands currently don't work with pylibfdt. The primary reason is Python packaging has opinions on the directory structure of repositories and one of those appears to be the inability to reference source files outside of setup.py's subtree. This means a sdist cannot be created with all necessary source components (i.e. libfdt headers). Moving setup.py to the top-level solves these problems. With this change. the following commands now work: Creating packages for pypi.org: ./setup.py sdist bdist_wheel Using pip for installs: pip install . pip install git+http://github.com/robherring/dtc.git@pypi-v2 Signed-off-by: Rob Herring <robh@kernel.org> Message-Id: <20211111011135.2386773-5-robh@kernel.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'MANIFEST.in')
-rw-r--r--MANIFEST.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..9e6c4ac
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,9 @@
+# SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
+
+global-exclude *
+include setup.py
+include pylibfdt/libfdt.i
+include pylibfdt/*.py
+include libfdt/libfdt.h
+include libfdt/fdt.h
+include libfdt/libfdt_env.h