youandme/setup.py

25 lines
839 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()
2020-04-16 11:41:49 +00:00
setup(name='youandme',
2020-04-21 01:40:55 +00:00
version='0.0.1',
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',
author_email='beardog@mailbox.org',
url='https://chaoswebs.net',
extras_require={
"tor": ["stem>=1.8"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
)