forked from sbyrnes321/tmm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
"""utility function to read the README file"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
descrip = ("Simulate light propagation in multilayer thin and/or thick "
"films using the fresnel equations and transfer matrix "
"method.")
data_files = ['README.rst', 'LICENSE.txt', 'Changes.txt', 'manual.pdf',
'examples.ipynb']
setup(
name="tmm",
version='0.1.7',
author="Steven Byrnes",
author_email="[email protected]",
description=descrip,
license="MIT",
keywords="optics, fresnel, reflection, absorption, photovoltaics, ellipsometry, transfer matrix method",
url="http://pypi.python.org/pypi/tmm",
packages=['tmm'],
package_data={'tmm':data_files},
package_dir={'tmm': '.'},
long_description=read('README.rst'),
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"],
)