Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwilliamson committed Jan 20, 2020
1 parent f88a7c6 commit c598328
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=dependencies,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)

0 comments on commit c598328

Please sign in to comment.