bwb/setup.py
Tanner Collin 47ad8b575a Protect main OTP against unauthed changes
This is a problem if someone sends:

000000handshake xyz

...because they will have set our OTP to xyz and could guess codes.

Fixed by using a separate OTP object for handshaking only.
2019-09-23 04:52:24 +00:00

19 lines
479 B
Python

import io
import setuptools
with io.open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(name='bwb',
version='2.1.0',
description='bwb',
long_description=long_description,
long_description_content_type='text/markdown',
author='bwb',
author_email='bwbpy@qotmail.com',
license='QPL.txt',
url='https://qotmail.com',
packages=setuptools.find_packages(),
install_requires=['base58', 'cryptography'],
)