-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
57 lines (50 loc) · 1.1 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
[build-system]
requires = ['setuptools>=73.0.0']
build-backend = 'setuptools.build_meta'
[project]
name = "femwell"
version = "0.0.1"
authors = [{name="Helge Gehring"}]
description = "Mode solver for photonic and electric waveguides based on FEM"
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 = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"scikit-fem>=8.1.0",
"gmsh>=4.13.1",
"pygmsh",
"matplotlib",
"meshwell>=1.0.2"
]
[project.optional-dependencies]
test = [
"pytest",
"flake8"
]
docs = [
"tqdm",
"enlighten",
"pint>0.20.1",
"sphinx-book-theme",
"jupytext",
"pandas"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["femwell*"]
[project.urls]
Homepage = "https://github.com/HelgeGehring/femwell"
Documentation = "https://HelgeGehring.github.io/femwell/"
[tool.black]
line-length = 100