[ooni-probe/master] Put all dependencies in one place

commit 5ec22e8587e953832397d375c4b22c5d59326c8a Author: aagbsn <aagbsn@extc.org> Date: Thu Oct 10 10:01:47 2013 +0000 Put all dependencies in one place --- setup.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 4443749..978f9b3 100644 --- a/setup.py +++ b/setup.py @@ -7,13 +7,6 @@ from os.path import join as pj import sys from setuptools import setup -install_requires = [ - 'txsocksx>=0.0.2', - 'scapy>=2.2.0', - 'dnspython>=1.10.0', - 'parsley>1.0', -] - dependency_links = [ 'https://people.torproject.org/~ioerror/src/mirrors/ooniprobe' ] @@ -40,6 +33,7 @@ for root, dirs, file_names in os.walk('data/'): files.append(pj(root, file_name)) data_files.append([pj(usr_share_path, root.replace('data/', '')), files]) +install_requires = [] with open('requirements.txt') as f: for line in f: if line.startswith("#") or line.startswith('http'):
participants (1)
-
art@torproject.org