forked from ivannz/cplxmodule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (46 loc) · 1.48 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
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
setup(
name="cplxmodule",
version="2021.01.10",
description="Variational Dropout and Complex-valued Neural Networks in pytorch",
long_description="An extension for pytorch providing essential building blocks "
"for Complex-valued Neural Networks and `torch.nn`-compatible "
"real- and complex-valued Variational Dropout methods. "
"Implements the tools necessary to train and sparsify "
"both real and complex-valued models, and seamlessly "
"integrate them into existing pipelines.",
url="https://github.com/ivannz/cplxmodule",
keywords=[
"pytorch",
"variational dropout",
"complex-valued networks",
"sparsification"
],
license="MIT License",
author="Ivan Nazarov",
author_email="[email protected]",
packages=[
"cplxmodule",
"cplxmodule.nn",
"cplxmodule.nn.modules",
"cplxmodule.nn.relevance",
"cplxmodule.nn.relevance.real",
"cplxmodule.nn.relevance.complex",
"cplxmodule.nn.relevance.extensions",
"cplxmodule.nn.relevance.extensions.real",
"cplxmodule.nn.masked",
"cplxmodule.nn.utils",
"cplxmodule.utils",
],
install_requires=[
"torch>=1.7",
"numpy",
"scipy"
],
tests_require=[
"tqdm",
"torchvision",
"matplotlib",
"pytest"
]
)