Skip to content

Commit

Permalink
Improvements long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
johnidm committed Jan 10, 2022
1 parent 8970916 commit 3fce606
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
name = simple_diarizer
author = Chau Luu
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown,
description = Simplified diarization pipeline using some pretrained models - audio file to diarized segments in a few lines of code
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent

[options]
packages = simple_diarizer
package_dir =
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

from simple_diarizer import __version__

with open("README.md", "r") as f:
long_description = f.read()

with open("requirements.txt", "r", encoding="utf-8") as f:
install_requires = f.read()

setuptools.setup(
version=__version__,
install_requires=install_requires,
long_description=long_description,
long_description_content_type="text/markdown"
)

0 comments on commit 3fce606

Please sign in to comment.