-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (44 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='arch_eval',
version='1.0',
description='ARCH: Audio Representations benCHmark',
py_modules=["arch_eval"],
packages=find_packages(include=['arch_eval', 'arch_eval.*']),
classifiers={
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
},
long_description = long_description,
long_description_content_type = "text/markdown",
install_requires = [
"numpy",
"pandas",
"scipy",
"scikit-learn",
"tqdm",
"torch",
"torchaudio",
"librosa",
"soundfile",
"pydub",
"xmltodict",
"pyannote.core",
"pyannote.metrics",
],
extras_require = {
"dev" : [
"pytest>=3.7",
],
},
url="https://github.com/MorenoLaQuatra/ARCH",
author="Moreno La Quatra",
author_email="moreno.laquatra@gmail.com",
)