-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
65 lines (60 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python3
import os
import sys
# Always prefer setuptools over distutils
from setuptools import find_packages, setup
long_description = open("README.md", "r").read()
setup(
name="hearpreprocess",
description="Holistic Evaluation of Audio Representations (HEAR) 2021 -- Preprocessing Pipeline",
author="",
author_email="",
url="https://github.com/hearbenchmark/hear-preprocess",
download_url="https://github.com/hearbenchmark/hear-preprocess",
license="Apache-2.0",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Bug Tracker": "https://github.com/hearbenchmark/hear-preprocess/issues",
"Source Code": "https://github.com/hearbenchmark/hear-preprocess",
},
packages=find_packages(exclude=("tests",)),
python_requires=">=3.7",
entry_points={},
install_requires=[
"click",
"luigi",
# One of the requirements pulls in librosa, I believe note_seq
# So we need to pin these, otherwise librosa breaks
"numpy==1.19.2",
"numba==0.48",
"pandas",
"python-slugify",
"requests",
"soundfile",
"spotty",
"tensorflow-datasets",
"tqdm",
"scikit-learn>=0.24.2",
"ffmpeg-python",
"note_seq",
"tensorflow>=2.0",
"schema",
"patool",
],
extras_require={
"test": [
"pytest",
"pytest-cov",
"pytest-env",
],
"dev": [
"pre-commit",
"black", # Used in pre-commit hooks
"pytest",
"pytest-cov",
"pytest-env",
],
},
classifiers=[],
)