Skip to content

Convert README.md to rst in setup.py #135

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,27 @@

from setuptools import setup, find_packages
import os
import subprocess

from bitcoin import __version__

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
readme_path = os.path.join(here, 'README.md')
try:
args = 'pandoc', '--from', 'markdown', '--to', 'rst', readme_path
readme = subprocess.check_output(args).decode()
except Exception as error:
print('README.md conversion to reStructuredText failed. Error:')
print(error)
with open(readme_path) as read_file:
readme = read_file.read()

requires = []

setup(name='python-bitcoinlib',
version=__version__,
description='The Swiss Army Knife of the Bitcoin protocol.',
long_description=README,
long_description=readme,
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
Expand Down