Skip to content

Commit 77cd681

Browse files
committed
Improvements long_description
1 parent 8970916 commit 77cd681

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
name = simple_diarizer
33
author = Chau Luu
44
author_email = cvqluu@gmail.com
5-
long_description = file: README.md
65
long_description_content_type = text/markdown,
76
description = Simplified diarization pipeline using some pretrained models - audio file to diarized segments in a few lines of code
87
classifiers =
98
Programming Language :: Python :: 3
109
Operating System :: OS Independent
10+
1111
[options]
1212
packages = simple_diarizer
1313
package_dir =

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
from simple_diarizer import __version__
44

55

6+
with open("README.md", "r", encoding="utf-8") as fh:
7+
long_description = fh.read(
8+
69
with open("requirements.txt", "r", encoding="utf-8") as f:
710
install_requires = f.read()
811

912
setuptools.setup(
1013
version=__version__,
14+
long_description=long_description,
1115
install_requires=install_requires,
1216
)

0 commit comments

Comments
 (0)