forked from gevero/py_matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1.02 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
from setuptools import setup
# Utility function to read the README file.
def readme():
with open('README.rst') as f:
return f.read()
descrip = ("A transfer matrix code for anysotropic multilayers")
data_files = ['README.rst','README.md','LICENSE.txt','Changes.txt','manual.pdf','examples.ipynb']
setup(
name = "py_matrix",
version = '0.0.1',
author = "Giovanni Pellegrini",
author_email = "[email protected]",
description = descrip,
license = "GPL 3.0",
keywords = "optics, reflection, absorption, photovoltaics, ellipsometry, transfer matrix method",
url='https://github.com/gevero/py_matrix',
packages=['py_matrix'],
long_description=readme(),
install_requires=[
'numpy',
'scipy',
'matplotlib',
],
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only"],
)