map2map/setup.py

22 lines
457 B
Python
Raw Normal View History

from setuptools import setup, find_packages
2019-11-30 21:32:45 +01:00
setup(
name='map2map',
version='0.0',
description='Neural network emulators to transform field data',
author='Yin Li et al.',
2019-11-30 21:32:45 +01:00
author_email='eelregit@gmail.com',
packages=find_packages(),
scripts=[
'm2m.py',
],
2020-06-14 23:59:31 +02:00
python_requires='>=3.6',
2019-11-30 21:32:45 +01:00
install_requires=[
2020-07-14 23:05:30 +02:00
'torch>=1.2',
2019-11-30 21:32:45 +01:00
'numpy',
'scipy',
'matplotlib',
'tensorboard',
2019-11-30 21:32:45 +01:00
],
)