Skip to content

Commit

Permalink
releases test
Browse files Browse the repository at this point in the history
  • Loading branch information
DTDwind committed Jun 14, 2023
1 parent 8ebc029 commit 392ce79
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# RTTManz
A simple Python package for analyzing the necessary data in Speaker Diarization using oracle RTTM files and audio files.

## Installation
```
$ conda create -n RTTManz python=3.8
$ conda activate RTTManz
```
After the environment is activated, clone and install the package as:
```
$ git clone https://github.com/DTDwind/RTTManz.git
$ cd RTTManz
$ pip install -e .
```
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy>=1.22.4
argparse
itertools
soundfile==0.10.2
soundfile>=0.10.2
pathlib
collections
tabulate>=0.9.0
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@
'numpy>=1.22.4',
'argparse',
'itertools',
'soundfile==0.10.2',
'soundfile>=0.10.2',
'pathlib',
'collections',
'tabulate>=0.9.0',
],
dependency_links=[],
license="Apache-2.0 License",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
)

0 comments on commit 392ce79

Please sign in to comment.