forked from fgnt/mms_msg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 651 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
from setuptools import find_packages
setup(
name='mms_msg',
version='0.0.0',
packages=find_packages(exclude=('tests', 'notebooks')),
url='',
license='',
author='Thilo von Neumann',
author_email='vonneumann@nt.upb.de',
description='MMS-MSG: Multipurpose Multi Speaker Mixture Signal Generator',
install_requires=[
'paderbox @ git+http://github.com/fgnt/paderbox',
'padertorch @ git+http://github.com/fgnt/padertorch',
'lazy_dataset @ git+http://github.com/fgnt/lazy_dataset',
'tqdm',
'cached_property',
'numpy',
'scipy',
],
)