-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
90 lines (83 loc) · 1.71 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "pip", "build", "wheel"]
[project]
name = "sax"
version = "0.14.1"
requires-python = ">=3.10.0"
authors = [
{ name = "Floris Laporte", email = "[email protected]" },
]
description = "Autograd and XLA for S-parameters"
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 = [
"black",
"fastcore",
"flax>=0.8.2",
"jax>=0.4.35",
"jaxlib>=0.4.35",
"jaxtyping",
"klujax>=0.3.1",
"matplotlib",
"natsort",
"networkx",
"numpy>=2.0",
"orjson",
"pydantic>=2.2",
"pyyaml",
"tqdm",
"typing-extensions>=4.10.0",
]
[project.optional-dependencies]
dev = [
"autodoc-pydantic",
"autograd",
"autoimport",
"black[jupyter]",
"bump2version",
"flake8",
"gdsfactory>=0.8.1",
"gplugins",
"ipyevents",
"ipykernel",
"ipympl",
"ipywidgets",
"isort",
"jedi",
"meow-sim>0.11.1",
"myst-nb",
"nbstripout",
"nlopt",
"papermill",
"pre-commit",
"pydot",
"pytest",
"sphinx-book-theme==1.0.1",
"sphinx-copybutton==0.5.2",
"sphinx==5.3.0",
"tmm",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["sax", "sax.backends"]
exclude = []
namespaces = true
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
[tool.pyright]
reportPrivateImportUsage = false
[tool.flake8]
ignore = ['F722']