-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 967 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
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ndfilters"
authors = [
{name = "Roy T. Smart", email = "roytsmart@gmail.com"},
]
description = "Similar to the filters in `scipy.ndimage` but accelerated using Numba"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy<2",
"numba",
"astropy",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"scipy",
"astropy",
]
doc = [
"pytest",
"scipy",
"pooch",
"matplotlib",
"graphviz",
"sphinx-autodoc-typehints",
"pydata-sphinx-theme",
"ipykernel",
"jupyter-sphinx",
"sphinx-favicon",
]
[project.urls]
Homepage = "https://github.com/sun-data/ndfilters"
Documentation = "https://ndfilters.readthedocs.io/en/latest"
[tool.setuptools]
packages = ["ndfilters"]
[tool.setuptools_scm]