Revision 6f0336a7e1d08b353c4397b7866c576295e651ce authored by Amos Egel on 26 September 2017, 07:52:45 UTC, committed by Amos Egel on 26 September 2017, 07:52:45 UTC
1 parent 89bbb21
Raw File
setup.py
# -*- coding: utf-8 -*-
import os
from setuptools import setup


def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
    name="SMUTHI",
    version="0.5.0",
    author="Amos Egel",
    author_email="amos.egel@kit.edu",
    url='https://gitlab.com/AmosEgel/smuthi',
    description="Light scattering by multiple particles in thin-film systems",
    long_description=read('README.rst'),
    packages=['smuthi', 'smuthi.nfmds'],
    package_data={'smuthi.nfmds': ['NFM-DS/*.txt', 'NFM-DS/TMATSOURCES/*', 'NFM-DS/TMATFILES/*',
                                   'NFM-DS/INPUTFILES/*.dat', 'NFM-DS/OUTPUTFILES/*'],
                  'smuthi': ['data/*']},
    install_requires=['numpy', 'scipy', 'mpmath', 'matplotlib', 'pyyaml', 'argparse', 'imageio'],
    entry_points={'console_scripts': ['smuthi = smuthi.__main__:main']},
    license='MIT',
)
back to top