-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.02 KB
/
pyproject.toml
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
37
38
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tmm"
version = "0.2.0"
authors = [
{name = "Steven Byrnes", email = "steven.byrnes@gmail.com"},
]
description = "Simulate light propagation in multilayer thin and/or thick films using the fresnel equations and transfer matrix method."
readme = "README.rst"
requires-python = ">=3"
keywords = ["optics", "fresnel", "reflection", "absorption", "photovoltaics", "ellipsometry", "transfer matrix method"]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "http://pypi.python.org/pypi/tmm"
Repository = "https://github.com/sbyrnes321/tmm"
[tool.setuptools]
packages = ["tmm"]
package-dir = {"tmm" = "."}
[tool.setuptools.package-data]
tmm = [
"README.rst",
"LICENSE.txt",
"Changes.txt",
"manual.pdf",
"examples.ipynb"
]