2019-09-10 02:32:11 +00:00
|
|
|
import io
|
2019-09-10 01:24:01 +00:00
|
|
|
import setuptools
|
2019-09-06 07:56:11 +00:00
|
|
|
|
2019-09-10 02:32:11 +00:00
|
|
|
with io.open('README.md', encoding='utf-8') as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
2019-09-06 07:56:11 +00:00
|
|
|
setuptools.setup(name='bwb',
|
2019-09-11 04:31:44 +00:00
|
|
|
version='2.0.0',
|
2019-09-06 07:56:11 +00:00
|
|
|
description='bwb',
|
2019-09-10 02:32:11 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2019-09-06 07:56:11 +00:00
|
|
|
author='bwb',
|
2019-09-10 02:32:11 +00:00
|
|
|
author_email='bwbpy@qotmail.com',
|
2019-09-06 07:56:11 +00:00
|
|
|
license='QPL.txt',
|
|
|
|
url='https://qotmail.com',
|
|
|
|
packages=setuptools.find_packages(),
|
2019-09-11 00:51:43 +00:00
|
|
|
install_requires=['base58', 'cryptography'],
|
2019-09-06 07:56:11 +00:00
|
|
|
)
|