You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
479 B

import io
import setuptools
with io.open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(name='bwb',
version='3.0.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'],
)