Fixed dependencies

This commit is contained in:
Kevin Froman 2020-04-20 20:47:11 -05:00
parent 914a0d263a
commit 4e545d8e02
1 changed files with 5 additions and 4 deletions

View File

@ -6,16 +6,17 @@ with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
setup(name='youandme', setup(name='youandme',
version='0.0.1', version='0.0.2',
description='Simple private data sharing via bytearrays, Tor tunneling and metadata paranoia', description='Simple private data sharing via bytearrays, Tor tunneling and metadata paranoia',
long_description=long_description, long_description=long_description,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
author='Kevin Froman', author='Kevin Froman',
author_email='beardog@mailbox.org', author_email='beardog@mailbox.org',
url='https://chaoswebs.net', url='https://chaoswebs.net',
extras_require={ install_requires=[
"tor": ["stem>=1.8"], 'stem',
}, 'PySocks'
],
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",