-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
51 lines (45 loc) · 1.51 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
[project]
name = "pyrtools"
dynamic = ["version"]
authors = [{name="Pyrtools authors"}]
description = "Python tools for multi-scale image processing, including Laplacian pyramids, Wavelets, and Steerable Pyramids."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
]
keywords = ['image processing', 'visual information processing', 'computational models']
dependencies = ['numpy>=1.1',
'scipy>=0.18',
'matplotlib>=1.5',
'tqdm>=4.29',
'requests>=2.21']
[project.optional-dependencies]
docs = [
'sphinx',
'numpydoc',
# because of this issue:
# https://nbsphinx.readthedocs.io/en/0.6.0/installation.html#Pygments-Lexer-for-Syntax-Highlighting
'ipython',
'nbsphinx',
'nbsphinx_link',
'sphinxcontrib-apidoc',
# fix sphinx 7 incompatibility issue
'sphinx_rtd_theme>=1.3.0rc1'
]
[build-system]
requires = ["setuptools", "wheel", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/LabForComputationalVision/pyrtools"
"Documentation" = "https://pyrtools.readthedocs.io/en/latest/"
"Download" = "https://zenodo.org/records/10403034"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/pyrtools/version.py"
version_scheme = 'python-simplified-semver'
local_scheme = 'no-local-version'