From 2d2152c79d4b28c8efc4a7a77012a5d1c146ec32 Mon Sep 17 00:00:00 2001 From: conorheins Date: Sat, 25 Mar 2023 18:55:41 +0100 Subject: [PATCH] added `long_description` and `long_description_content_type` fields into `setup.py`, to avoid errors during source generation and wheel building --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 29e811ed..f8378fba 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,16 @@ import setuptools +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + setuptools.setup( name="inferactively-pymdp", version="0.0.7.1", author="infer-actively", author_email="conor.heins@gmail.com", description= ("A Python package for solving Markov Decision Processes with Active Inference"), + long_description=long_description, + long_description_content_type="text/markdown", license='MIT', url="https://github.com/infer-actively/pymdp", python_requires='>3.7',