Skip to content

Commit 18bf07a

Browse files
committed
Update setup to use README.md
1 parent 5e9345b commit 18bf07a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import os
22
from setuptools import setup, find_packages
33

4-
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
5-
readme = readme.read()
4+
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
5+
readme = readme.read()
66

77
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as requirements_file:
88
requirements = [line.rstrip() for line in requirements_file if line != '\n']

0 commit comments

Comments
 (0)