From 7a4af879929189e30e92c23a294092df0ed905cb Mon Sep 17 00:00:00 2001 From: Jelte van Boheemen Date: Wed, 12 Jul 2023 11:32:56 +0200 Subject: [PATCH] Fix README export in setup --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index af03469..f7f278c 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,12 @@ from setuptools import setup, find_packages -with open('README.rst') as file: +with open('README.md') as file: long_description = file.read() setup( name='chamd', python_requires='>=3.5, <4', - version='0.5.10', + version='0.5.11', description='Conversion and cleaning of CHILDES CHA files into PaQu Plaintext Metadata Format', long_description=long_description, author='Digital Humanities Lab, Utrecht University',