Skip to content

Commit

Permalink
Add install_requires for diarizationlm
Browse files Browse the repository at this point in the history
  • Loading branch information
wq2012 committed Sep 25, 2024
1 parent dedc4b7 commit 8cd143a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion DiarizationLM/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

import setuptools

VERSION = "0.1.0"
VERSION = "0.1.1"

with open("README.md", "r") as file_object:
LONG_DESCRIPTION = file_object.read()

with open("requirements.txt") as file_object:
INSTALL_REQUIRES = file_object.read().splitlines()

setuptools.setup(
name="diarizationlm",
version=VERSION,
Expand All @@ -22,4 +25,5 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=INSTALL_REQUIRES,
)

0 comments on commit 8cd143a

Please sign in to comment.