-
Notifications
You must be signed in to change notification settings - Fork 95
/
pyproject.toml
57 lines (49 loc) · 1.03 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", "setuptools-scm"]
[project]
name = "sigpy"
description = "Python package for signal reconstruction."
authors = [
{name = "Frank Ong", email = "[email protected]"},
]
license = {text = "BSD"}
dependencies = [
"numpy",
"pywavelets",
"numba",
"scipy",
"tqdm"
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dynamic = [
"version",
"readme"
]
[project.optional-dependencies]
test = [
"pytest < 5.0.0",
"pytest-cov[all]",
"coverage"
]
lint = [
"ruff",
"black",
"isort",
"sphinx",
"sphinx_rtd_theme"
]
[project.urls]
homepage = "https://github.com/mikgroup/sigpy"
documentation = "https://sigpy.readthedocs.io/en/latest/"
repository = "https://github.com/mikgroup/sigpy"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
[tool.setuptools.dynamic]
version = {attr = "sigpy.version.__version__"}
readme = {file = "README.rst" }