-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 995 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "fftl"
authors = [{name = "Nicolas Tessore", email = "[email protected]"}]
description = "Generalised FFTLog for integral transforms"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["FFTLog", "integral transform", "Hankel transform",
"Laplace transform", "Stieltjes transform"]
classifiers = [
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.6"
dependencies = ["numpy"]
dynamic = ["version"]
[project.optional-dependencies]
scipy = ["scipy"]
test = ["pytest", "matplotlib", "scipy"]
docs = ["sphinx", "furo", "numpydoc", "scipy", "matplotlib"]
[project.urls]
Home = "https://github.com/ntessore/fftl"
Documentation = "https://fftl.readthedocs.io"
Issues = "https://github.com/ntessore/fftl/issues"
[tool.flit.sdist]
exclude = [".*", "docs"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules"
testpaths = [
"fftl",
]