-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
74 lines (68 loc) · 1.84 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
build-backend = "setuptools.build_meta"
requires = ["build", "pip", "setuptools", "wheel", "pybind11"]
[project]
name = "meow-sim"
version = "0.12.0"
authors = [
{ name = "Floris Laporte", email = "[email protected]" },
]
description = "Modeling of Eigenmodes and Overlaps in Waveguide Structures"
requires-python = ">=3.10"
keywords = [
"eigenmodes",
"eme",
"fde",
"modeling",
"overlaps",
"photonics",
"waveguides",
]
license = { text = "Apache Software License" }
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"matplotlib",
"numpy>=2.0",
"orjson",
"packaging",
"pydantic>=2",
"sax>=0.13.0",
"scipy",
"shapely",
"tidy3d>=2.7.0",
"trimesh[easy]",
]
[project.optional-dependencies]
min = ["meow-sim"]
vis = ["matplotlib", "trimesh[easy]"]
jax = ["jax", "jaxlib"]
klu = ["klujax>0.1.2"]
ipy = ["ipykernel", "ipywidgets", "ipympl", "nbstripout", "tqdm"]
gds = ["gdsfactory>=8", "klayout>0.28.2", "kweb", "kfactory"]
dev = ["bump2version", "nbstripout", "pre-commit", "black[jupyter]", "autoimport", "isort", "sphinx", "autodoc-pydantic", "myst-nb>0.17.1", "jupyter-book", "papermill"]
full = ["meow-sim[vis,klu,jax,ipy,gds]"]
[tool.setuptools.packages.find]
where = ["."]
include = ["meow*"]
exclude = []
namespaces = true
[tool.setuptools.package-data]
"*" = ["*.csv"]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
[tool.pyright]
reportPrivateImportUsage = false
reportUnusedVariable = false