Skip to content

Commit

Permalink
Add long description to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
apmnt committed Mar 3, 2024
1 parent aa2b055 commit 3c33513
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name="postalservice",
version="0.1.0",
author="Aapo Montin",
description="A package for second hand shopping",
packages=find_packages()
long_description=long_description,
long_description_content_type="text/markdown", # Specify the content type
packages=find_packages(),
)

0 comments on commit 3c33513

Please sign in to comment.