-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
36 lines (34 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
from setuptools import setup, find_packages
import itertools
extras = {
'example': [
'einops',
'lazy_dataset',
# The PyPi version is not frequently updated
'sacred @ git+http://github.com/IDSIA/sacred',
'padertorch @ git+http://github.com/fgnt/padertorch',
'paderbox @ git+http://github.com/fgnt/paderbox',
],
'test': [
'pytest',
'paderbox @ git+http://github.com/fgnt/paderbox',
],
}
extras['all'] = list(set(itertools.chain.from_iterable(extras.values())))
setup(
name='graph_pit',
version='0.1',
packages=find_packages(include=['graph_pit', 'graph_pit.*']),
install_requires=[
'numpy',
'torch',
'cached_property',
],
extras_require=extras,
url='https://github.com/fgnt/graph_pit',
license='', # TODO
author='Thilo von Neumann',
author_email='',
description='PyTorch implementation of the Graph-PIT objective for '
'training networks for continuous source separation',
)