From c59832877cfe71737b26800f97d8a795095f9e3f Mon Sep 17 00:00:00 2001 From: Ian Williamson Date: Mon, 20 Jan 2020 12:01:55 -0800 Subject: [PATCH] Add setup.py --- setup.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9dcbd19 --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +from setuptools import setup, find_packages + +with open('README.md', 'r') as f: + readme = f.read() + +dependencies = [ + 'tensorflow>2.0', + 'numpy>=1.16' +] + +setup( + name='vtmm', + version='0.1', + description='Vectorized transfer matrix method (TMM) for computing the optical reflection and transmission of multilayer planar stacks', + long_description=readme, + long_description_content_type='text/markdown', + url='https://github.com/fancompute/vtmm', + author='Ian Williamson', + author_email='ian.williamson@ieee.org', + license='MIT', + packages=find_packages(), + install_requires=dependencies, + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ] +)