-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
43 lines (41 loc) · 1.24 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
from setuptools import find_packages
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="wav2clip",
version="0.1.0",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Topic :: Artistic Software",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Software Development :: Libraries",
],
description="Wav2CLIP: Learning Robust Audio Representations From CLIP.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ho-Hsiang Wu",
author_email="[email protected]",
url="https://github.com/descriptinc/lyrebird-wav2clip",
license="MIT",
packages=find_packages(),
keywords=[
"audio",
"representation",
"learning",
"music",
"sound",
"representation learning",
"wav2clip",
],
install_requires=[],
extras_require={
"tests": ["pytest", "pytest-cov"],
},
)