forked from fancompute/Rigorous-Coupled-Wave-Analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (19 loc) · 728 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
import setuptools
## will this be okay? there are images in my readme.md...
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='RCWA',
version='1.0',
description='rigorous coupled wave analysis module',
author='Nathan Zhao',
author_email='[email protected]',
url="https://github.com/zhaonat/Rigorous_Coupled_Wave_Analysis",
packages=setuptools.find_packages(), ## gets all package dependencies
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)
# packages=['distutils', 'distutils.command'],