-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.1 KB
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
39
40
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyMoosh"
authors = [
{name = "Denis Langevin", email = "denis.langevin@univ-amu.fr"},
{name = "Antoine Moreau", email = "antoine.moreau@uca.fr"}]
version = "4.0.1"
description = "A scattering matrix formalism to solve Maxwell's equations in a multilayered structure."
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
keywords = ["multilayer optics", "photonic simulation", "optimization"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"refractiveindex; python_version >= '3.10'"
]
[project.urls]
Homepage = "https://github.com/AnMoreau/PyMoosh"
Repository = "https://github.com/AnMoreau/PyMoosh/stable"
Documentation = "https://github.com/AnMoreau/PyMoosh#readme"
[tool.setuptools.packages.find]
include = ["PyMoosh*"]
[tool.setuptools]
include-package-data = true
zip-safe = false