forked from ivannz/cplxmodule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.08 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 distutils.core import setup, Extension
setup(
name="cplxmodule",
version="2020.03",
description="An extension for pytorch providing essential building blocks"
" for complex-valued networks and `torch.nn`-compatible"
" Bayesian sparsification methods. Implements the tools"
" necessary to train and sparsify both real and complex-valued"
" models, and seamlessly integrate them into existing models.",
license="MIT License",
author="Ivan Nazarov",
author_email="[email protected]",
packages=[
"cplxmodule",
"cplxmodule.nn",
"cplxmodule.nn.modules",
"cplxmodule.nn.relevance",
"cplxmodule.nn.relevance.extensions",
"cplxmodule.nn.relevance.extensions.real",
"cplxmodule.nn.masked",
"cplxmodule.nn.utils",
"cplxmodule.utils",
],
install_requires=[
"torch>=1.4",
"numpy",
"scipy"
],
tests_require=[
"tqdm",
"torchvision",
"matplotlib",
"pytest"
]
)