From 7db2f253b954b10cfb72e5e81cc0ee729eb69295 Mon Sep 17 00:00:00 2001 From: Brandon Walderman Date: Thu, 7 May 2020 21:36:20 -0700 Subject: [PATCH] Use local copy of README.md in setup.py. --- py/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/setup.py b/py/setup.py index dce4716..6b83cbd 100644 --- a/py/setup.py +++ b/py/setup.py @@ -15,7 +15,7 @@ from os.path import dirname, join, abspath from setuptools import setup -with open(join(abspath(dirname(__file__)), '..', 'README.md'), 'r') as fh: +with open(join(abspath(dirname(__file__)), 'README.md'), 'r') as fh: long_description = fh.read() setup(