-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
25 lines (23 loc) · 928 Bytes
/
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
from setuptools import setup, find_packages
import re
VERSIONFILE = "Solos/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
setup(name='solos',
version=verstr,
description='Python implementation of Solos: A Dataset for Audio-Visual Music Source Separation and Localization',
url='https://juanfmontesinos.github.io/Solos/',
author='Juan Montesinos',
author_email='[email protected]',
packages=find_packages(),
install_requires=['Fire', 'youtube_dl', 'googledrivedownloader'],
package_data={'Solos': 'json_files/solos_ids.json'},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3", ],
zip_safe=False)