-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
67 lines (60 loc) · 1.29 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
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfftlog"
description = "Logarithmic Fast Fourier Transform"
readme = "README.rst"
requires-python = ">=3.10"
authors = [
{name = "The emsig community", email = "[email protected]"},
]
dependencies = [
"numpy",
"scipy>=1.10",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python",
]
dynamic = ["version"]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://pyfftlog.rtfd.io"
Documentation = "https://pyfftlog.rtfd.io"
Repository = "https://github.com/emsig/pyfftlog"
[project.optional-dependencies]
docs = [
"ipympl",
"sphinx",
"empymod",
"numpydoc",
"ipykernel",
"matplotlib",
"pickleshare",
"sphinx_gallery",
"sphinx-rtd-theme",
]
tests = [
"flake8",
"pytest",
"coveralls",
"pytest_cov",
"flake8-pyproject",
]
all = [
"pyfftlog[docs]",
"pyfftlog[tests]",
]
build = [
"setuptools_scm>=8",
"setuptools>=64",
]
[tool.setuptools.packages.find]
include = ["pyfftlog*"]
[tool.setuptools_scm]
version_file = "pyfftlog/version.py"
[tool.coverage.run]
relative_files = true