map2map/setup.py
Yin Li 8a3cd1843d Move the executable script to the right place
so that calling it runs the local map2map
2021-05-18 13:29:13 -04:00

22 lines
457 B
Python

from setuptools import setup, find_packages
setup(
name='map2map',
version='0.0',
description='Neural network emulators to transform field data',
author='Yin Li et al.',
author_email='eelregit@gmail.com',
packages=find_packages(),
scripts=[
'm2m.py',
],
python_requires='>=3.6',
install_requires=[
'torch>=1.2',
'numpy',
'scipy',
'matplotlib',
'tensorboard',
],
)