Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 94153f8

Browse files
committed
Add long description
1 parent c703aa8 commit 94153f8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import os
22

33
from setuptools import setup
4+
from pathlib import Path
45

56
name = "django-filter-stubs"
67

@@ -16,11 +17,15 @@ def find_stub_files(name):
1617
result.append(f)
1718
return result
1819

20+
long_description = (Path(__file__).parent / "README.md").read_text()
21+
1922

2023
setup(
2124
name="django-filter-stubs",
2225
version="0.1.2",
2326
description="PEP-484 stubs for django-filter",
27+
long_description=long_description,
28+
long_description_content_type="text/markdown",
2429
license="MIT",
2530
url="https://github.com/DavisRayM/django-filter-stubs",
2631
author="Davis Raymond Muro",

0 commit comments

Comments
 (0)