File: 000-remove-install-requires.patch

package info (click to toggle)
python-bip32utils 0.0~git20170118.dd9c541-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 168 kB
  • ctags: 82
  • sloc: python: 466; sh: 39; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Removes install requires from setup.py to avoid unwanted packages installation
 from remote server and removes executable installation.
Author: Josue Ortega <josue@debian.org>
Last-Update: 2017-04-25

--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,5 @@
     url = 'http://github.com/prusnak/bip32utils',
     description = 'Utilities for generating and using Bitcoin Hierarchical Deterministic wallets (BIP0032).',
     license = 'MIT',
-    install_requires = ['ecdsa'],
     packages = ['bip32utils'],
-    scripts = ['bip32gen']
 )