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']))
|