-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 961 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 961 Bytes
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
# -*- coding: utf-8 -*-
__author__ = 'John Bangsund'
import os
from setuptools import setup, find_packages
description = ("Package for common calculations for organic light-emitting"
"devices, such as color coordinates, transfer matrix modeling "
"of electric field profiles within a device, and light outcoupling")
setup(
name="oledpy",
version='0.0.1',
author="John Bangsund",
author_email="jsb@umn.edu",
description=description,
license="",
keywords="oleds, outcoupling, optics, fresnel, transfer matrix method",
url="",
packages=find_packages(),
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"],
install_requires=[
'numpy',
'matplotlib',
'scipy',
'pandas'
],
zip_safe=False
)