forked from HelgeGehring/femwell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.06 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
[build-system]
requires = ["poetry-core>=1.6.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "femwell"
version = "0.0.1"
authors = ["Helge Gehring"]
description = "Mode solver for photonic and electric waveguides based on FEM"
homepage = "https://github.com/HelgeGehring/femwell"
keywords = [
"integrated photonics",
"silicon photonics",
"mode solving",
"finite element analysis"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
license = "GPLv3"
readme = "README.md"
[tool.poetry.urls]
Documentation = "https://HelgeGehring.github.io/femwell/"
[tool.poetry.dependencies]
python = ">=3.8"
scikit-fem = ">=8.1.0"
gmsh = "*"
pygmsh = "*"
matplotlib = "*"
meshwell = ">=1.0.2"
[tool.poetry.group.test.dependencies]
pytest = "*"
flake8 = "*"
[tool.poetry.group.docs.dependencies]
python = ">=3.10"
tqdm = "*"
# sphinx-book-theme = "*"
jupytext = "*"
# myst-parser = "*"
pandas = "*"
[tool.black]
line-length = 100