File: 0004-Exclude-docs-from-built-modules.patch

package info (click to toggle)
keras 2.3.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 9,288 kB
  • sloc: python: 48,266; javascript: 1,794; xml: 297; makefile: 36; sh: 30
file content (18 lines) | stat: -rw-r--r-- 589 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
From: Stephen Sinclair <radarsat1@gmail.com>
Date: Mon, 11 Jun 2018 15:59:25 +0000
Subject: Exclude docs from built modules.

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: keras/setup.py
===================================================================
--- keras.orig/setup.py
+++ keras/setup.py
@@ -63,4 +63,4 @@ setup(name='Keras',
           'Topic :: Software Development :: Libraries',
           'Topic :: Software Development :: Libraries :: Python Modules'
       ],
-      packages=find_packages())
+      packages=find_packages(exclude=['docs']))