-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 989 Bytes
/
setup.py
File metadata and controls
35 lines (34 loc) · 989 Bytes
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
from distutils.core import setup
setup(
name="cplxpaper",
version="2020.6",
description="""Backend for experiments presented in Bayesian"""
""" Sparsification of Deep Complex-valued Networks.""",
license="MIT License",
author="Ivan Nazarov",
author_email="ivan.nazarov@skolkovotech.ru",
packages=[
"cplxpaper",
"cplxpaper.auto",
"cplxpaper.auto.reports",
"cplxpaper.musicnet",
"cplxpaper.musicnet.models",
"cplxpaper.musicnet.models.real",
"cplxpaper.musicnet.models.complex",
"cplxpaper.mnist",
"cplxpaper.mnist.models",
"cplxpaper.cifar",
"cplxpaper.cifar.models",
"cplxpaper.cifar.models.vgg",
],
install_requires=[
"torch>=1.4",
"cplxmodule @ https://github.com/ivannz/cplxmodule/archive/v2020.03.tar.gz",
"numpy",
"pandas",
"sklearn",
"ncls",
"resampy",
"h5py",
],
)