-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (101 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
108 lines (101 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gyptis"
version = "1.2.0"
description = "Computational Photonics in Python"
readme = "README.rst"
license = {text = "MIT"}
authors = [
{name = "Benjamin Vial", email = "benjamin.vial84@gmail.com"}
]
requires-python = ">=3.10,<3.15"
keywords = [
"finite element method",
"diffraction",
"scattering",
"optics",
"photonics",
"metamaterials",
"modal analysis"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"pyvista",
"sympy",
"dolfin-adjoint",
"meshio",
"joblib",
"psutil",
"ipython",
"loguru"
]
[project.urls]
Code = "https://gitlab.com/gyptis/gyptis"
Documentation = "https://gyptis.gitlab.io"
Issues = "https://gitlab.com/gyptis/gyptis/issues"
[project.optional-dependencies]
docs = [
"sphinx",
"pydata-sphinx-theme",
"sphinx_gallery",
"sphinx-copybutton",
"memory_profiler",
"numpydoc",
"sphinxcontrib-svg2pdfconverter",
"sphinxcontrib-bibtex",
"matplotlib",
"refidx",
"beautifulsoup4"
]
dev = [
"pip",
"setuptools",
"wheel",
"build",
"flake8",
"black",
"twine",
"isort",
"radon",
"pydocstyle",
"pylint",
"pylint-json2html",
"python-gitlab"
]
test = [
"pytest",
"pytest-cov",
"pytest-datadir",
"pytest-sugar",
"pytest-xdist[psutil]",
"coverage"
]
mesh = ["gmsh>=4.15.0"]
opt = ["nlopt"]
full = ["gyptis[docs]", "gyptis[dev]", "gyptis[test]", "gyptis[mesh]", "gyptis[opt]"]
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.cpp"]