Use README as long description on PyPI

This commit is contained in:
Nikita Titov 2018-10-20 15:35:28 +03:00 committed by Lex Berezhny
parent d3d60071ae
commit e650562758

View file

@ -1,3 +1,4 @@
import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
import torba import torba
@ -10,6 +11,9 @@ setup(
author='LBRY Inc.', author='LBRY Inc.',
author_email='hello@lbry.io', author_email='hello@lbry.io',
description='Wallet library for bitcoin based currencies.', description='Wallet library for bitcoin based currencies.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md'),
encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords='wallet,crypto,currency,money,bitcoin,lbry', keywords='wallet,crypto,currency,money,bitcoin,lbry',
classifiers=( classifiers=(
'Framework :: AsyncIO', 'Framework :: AsyncIO',