-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
38 lines (32 loc) · 1.02 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
import os
from setuptools import setup
from setuptools import find_packages
def package_file(fname):
return os.path.relpath(os.path.join(os.path.dirname(__file__), fname))
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="desed",
version="1.3.8",
description="DESED dataset utils",
long_description=long_description,
long_description_content_type="text/markdown",
author="Nicolas Turpault",
author_email="turpaultn@gmail.com",
url="https://github.com/turpaultn/DESED",
license="MIT",
package_dir={"": package_file("desed")},
packages=find_packages(package_file("desed")),
install_requires=[
"scaper >= 1.6.5rc0",
"numpy >= 1.15.4",
"pandas >= 0.24.0",
"dcase-util >= 0.2.11",
"yt-dlp >= 2022.3.8.2", # Better with conda install and conda-forge channel
"soundfile >= 0.10.1",
"jams >= 0.3.4",
"tqdm >= 4.29.1",
"requests >= 2.21.0",
"resampy >= 0.4.3"
],
)