Skip to content

Commit

Permalink
added long_description and long_description_content_type fields i…
Browse files Browse the repository at this point in the history
…nto `setup.py`, to avoid errors during source generation and wheel building
  • Loading branch information
conorheins committed Mar 25, 2023
1 parent 9db5bac commit 2d2152c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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',
Expand Down

0 comments on commit 2d2152c

Please sign in to comment.