Skip to content

Commit

Permalink
remove pandoc dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
eroux committed Jan 14, 2023
1 parent eb7c42d commit b206b49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
import os
import sys
from setuptools import setup, find_packages
import pypandoc

assert(parse_version(setuptools.__version__) >= parse_version("38.6.0"))

def read(fname):
rst = pypandoc.convert_file(os.path.join(os.path.dirname(__file__), fname), 'rst', format='md')
return rst
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name="bophono",
Expand Down

0 comments on commit b206b49

Please sign in to comment.