1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Mon, 11 Apr 2022 12:49:14 +0200
Subject: Do not install documentation to /usr/lib/python3
---
setup.py | 3 ---
1 file changed, 3 deletions(-)
diff --git a/setup.py b/setup.py
index 9255cc6..ef8618f 100755
--- a/setup.py
+++ b/setup.py
@@ -40,9 +40,6 @@ if sys.version_info < (3, 4):
setup(
version = '4.15.0',
- data_files = [('pwntools-doc',
- glob.glob('*.md') + glob.glob('*.txt')),
- ],
package_data = {
'pwnlib': [
'data/crcsums.txt',
|