From 4e545d8e021792635394280cf08f83e2b31ffe1a Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Mon, 20 Apr 2020 20:47:11 -0500 Subject: [PATCH] Fixed dependencies --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 9895368..83d48cc 100644 --- a/setup.py +++ b/setup.py @@ -6,16 +6,17 @@ with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: setup(name='youandme', - version='0.0.1', + version='0.0.2', description='Simple private data sharing via bytearrays, Tor tunneling and metadata paranoia', long_description=long_description, long_description_content_type='text/markdown', author='Kevin Froman', author_email='beardog@mailbox.org', url='https://chaoswebs.net', - extras_require={ - "tor": ["stem>=1.8"], - }, + install_requires=[ + 'stem', + 'PySocks' + ], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",