-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (62 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
73 lines (62 loc) · 2.38 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
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
# pyproject.toml ─ gds_fdtd
[build-system]
requires = ["flit_core>=3.2,<4"]
build-backend = "flit_core.buildapi"
# ────────────────────────── project meta ─────────────────────────
[project]
name = "gds_fdtd"
version = "0.3.9"
description = "Minimalist utilities for photonic FDTD workflows."
authors = [{ name = "Mustafa Hammood", email = "mustafa@siepic.com" }]
license = { text = "MIT" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10,<3.14"
keywords = [
"python", "photonics", "fdtd", "simulation", "optics",
"eda", "electromagnetics", "gds", "silicon-photonics"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
# ─────────────── core runtime (always installed) ───────────────
dependencies = [
"numpy>=1.25",
"klayout>=0.30.1",
"matplotlib>=3.8",
"shapely>=2.0",
"PyYAML>=6.0"
]
# ──────────────── optional feature / tool sets ────────────────
[project.optional-dependencies]
tidy3d = ["tidy3d>=2.8.3,<2.9"] # enables gds_fdtd.t3d_tools
gdsfactory = ["gdsfactory>=9.5.7,<10"]
prefab = ["prefab>=1.2.0"]
siepic = ["SiEPIC>=0.5.25"]
dev = [
"pip>=23.3",
"wheel>=0.42.0",
"twine>=4.0.2",
"bump2version>=1.0.1",
"watchdog>=3.0.0",
"pytest>=8.1",
"pytest-cov>=5.0",
"coverage",
"ruff>=0.4.3",
"sphinx>=7.0",
"sphinx-rtd-theme>=1.2.0",
"docutils<0.22"
]
# ───────────────────────── project links ────────────────────────
[project.urls]
Homepage = "https://github.com/SiEPIC/gds_fdtd"
Repository = "https://github.com/SiEPIC/gds_fdtd"
"Bug Tracker" = "https://github.com/SiEPIC/gds_fdtd/issues"
# ─────────────────────────── tooling ────────────────────────────
[tool.pytest.ini_options]
addopts = "--cov=."
[tool.flake8]
max-line-length = 88