-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 920 Bytes
/
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
[build-system]
requires = [
"setuptools ~=65.5",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "slepianfocusing._version.__version__"}
[tool.setuptools.package-data]
slepianfocusing = ["gauss_legendre_rules.zip"]
[tool.black]
line-length = 79
target-version = ["py311"]
[project]
name = "slepianfocusing"
dynamic = ["version"]
description = "Code related to my PhD thesis \"The vector Slepian theory of high numerical aperture focusing\" (2017)"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Kornel JAHN", email = "[email protected]"}
]
dependencies = [
"numpy ~=1.26",
"scipy ~=1.13",
"numba ~=0.59",
"matplotlib ~=3.8",
]
[project.optional-dependencies]
devel = [
"black ~=24.4", # Code formatting
"pytest ~=8.1", # Unit testing
"ipython ~=8.23", # Convenience REPL
]