youandme/setup.py

30 lines
1017 B
Python
Raw Normal View History

2020-04-16 11:41:49 +00:00
from setuptools import setup, find_packages
2020-04-20 11:15:19 +00:00
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
packages = find_packages(exclude=['contrib', 'docs', 'tests'])
2020-04-16 11:41:49 +00:00
setup(name='youandme',
version='2.0.0',
2020-04-20 11:15:19 +00:00
description='Simple private data sharing via bytearrays, Tor tunneling and metadata paranoia',
long_description=long_description,
long_description_content_type='text/markdown',
2020-04-16 11:41:49 +00:00
author='Kevin Froman',
packages=packages,
scripts=['src/yam/yam.py'],
2020-04-16 11:41:49 +00:00
author_email='beardog@mailbox.org',
url='http://github.com/beardog108/youandme',
python_requires='>=3.7',
2020-04-21 01:47:11 +00:00
install_requires=[
'stem',
'PySocks'
],
2020-04-16 11:41:49 +00:00
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
)