File: 01-removes-install-requires.patch

package info (click to toggle)
plotly 1.13.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,568 kB
  • ctags: 1,958
  • sloc: python: 15,692; sh: 49; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 534 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Removes install_requires in order to avoid automatic package
 installation with some Python package managers.
Author: Josue Ortega <josue@debian.org>
Last-update: 2017-01-18

--- a/setup.py
+++ b/setup.py
@@ -41,5 +41,5 @@
                 'plotly/matplotlylib/mplexporter',
                 'plotly/matplotlylib/mplexporter/renderers'],
       package_data={'plotly': ['package_data/*']},
-      install_requires=['requests', 'six', 'pytz'],
+      # install_requires=['requests', 'six', 'pytz'],
       zip_safe=False)