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.

19 lines
479 B

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