forked from wavefrontshaping/complexPyTorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 739 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages
setup(name='complexPyTorch',
version='0.4.1',
description='A high-level toolbox for using complex valued neural networks in PyTorch.',
long_description=open('README.md').read().strip(),
long_description_content_type='text/markdown',
author="Sebastien M. Popoff",
author_email='sebastien.popoff@espci.psl.eu',
url='https://gitlab.institut-langevin.espci.fr/spopoff/complexPyTorch',
packages=find_packages(),
install_requires=['torch'],
python_requires='>=3.6',
license='MIT License',
zip_safe=False,
keywords='pytorch, deep learning, complex values',
classifiers=[''])