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

Commit 5160eb3

Browse files
committed
Use readme.md as PyPI description
1 parent 863eb6c commit 5160eb3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,16 @@
2828
else:
2929
raise RuntimeError("unexpected python major version")
3030

31+
def readme():
32+
with open('readme.md') as f:
33+
return f.read()
34+
3135
setup(
3236
name="python-idb",
3337
version="0.7.0",
3438
description="Pure Python parser for IDA Pro databases (.idb files)",
39+
long_description=readme(),
40+
long_description_content_type='text/markdown',
3541
author="Willi Ballenthin",
3642
author_email="willi.ballenthin@gmail.com",
3743
url="https://github.com/williballenthin/python-idb",

0 commit comments

Comments
 (0)