We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f828a2 commit 5f7ab7cCopy full SHA for 5f7ab7c
1 file changed
setup.py
@@ -3,9 +3,14 @@
3
4
from setuptools import setup, find_packages
5
6
+with open("README.md", "r") as fh:
7
+ long_description = fh.read()
8
+
9
setup(
10
name="pathfinding",
11
description="Pathfinding algorithms (based on Pathfinding.JS)",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
url="https://github.com/brean/python-pathfinding",
15
version="0.0.2",
16
license="MIT",
0 commit comments