From a2f47a6524c1066481c437f4948fbfdc241a99ab Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 24 Apr 2022 13:55:24 +0200 Subject: Version 1.0.1 Include README in PyPI package --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fe09b2e..d5e1535 100755 --- a/setup.py +++ b/setup.py @@ -1,11 +1,15 @@ #!/usr/bin/env python3 from setuptools import setup +from pathlib import Path + setup( name = 'python-mpv', - version = 'v1.0.0', + version = 'v1.0.1', py_modules = ['mpv'], description = 'A python interface to the mpv media player', + long_description = (Path(__file__).parent / 'README.rst').read_text(), + long_description_content_type = 'text/x-rst', url = 'https://github.com/jaseg/python-mpv', author = 'jaseg', author_email = 'github@jaseg.net', -- cgit