File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 22name = simple_diarizer
33author = Chau Luu
44author_email = cvqluu@gmail.com
5- long_description = file: README.md
65long_description_content_type = text/markdown,
76description = Simplified diarization pipeline using some pretrained models - audio file to diarized segments in a few lines of code
87classifiers =
98 Programming Language :: Python :: 3
109 Operating System :: OS Independent
10+
1111[options]
1212packages = simple_diarizer
1313package_dir =
Original file line number Diff line number Diff line change 33from simple_diarizer import __version__
44
55
6+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
7+ long_description = fh .read (
8+
69with open ("requirements.txt" , "r" , encoding = "utf-8" ) as f :
710 install_requires = f .read ()
811
912setuptools .setup (
1013 version = __version__ ,
14+ long_description = long_description ,
1115 install_requires = install_requires ,
1216)
You can’t perform that action at this time.
0 commit comments