Skip to content

Commit 5f7ab7c

Browse files
authored
Add long_description (from readme-file)
1 parent 0f828a2 commit 5f7ab7c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33

44
from setuptools import setup, find_packages
55

6+
with open("README.md", "r") as fh:
7+
long_description = fh.read()
8+
69
setup(
710
name="pathfinding",
811
description="Pathfinding algorithms (based on Pathfinding.JS)",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
914
url="https://github.com/brean/python-pathfinding",
1015
version="0.0.2",
1116
license="MIT",

0 commit comments

Comments
 (0)