-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.16 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
long_description = open("README.md", "r").read()
setup(
name="hear-savi",
description="An HEAR API for SAVI AudioCNN",
version='0.0.5',
author="Sivan Ding",
author_email="[email protected]",
url="https://github.com/marl/hear-semav-embedding",
license="LICENSE",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Bug Tracker": "https://github.com/marl/hear-semav-embedding/issues",
"Source Code": "https://github.com/marl/hear-semav-embedding",
},
packages=find_packages(exclude=("tests",)),
python_requires=">=3.7",
install_requires=[
"librosa",
"typing",
"scikit-image",
"numba",
"numpy",
"torch",
"torchaudio==0.11.0"
],
extras_require={
"test": [
"pytest",
"pytest-cov",
"pytest-env",
],
"dev": [
"pre-commit",
"black", # Used in pre-commit hooks
"pytest",
"pytest-cov",
"pytest-env",
],
},
)