-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.43 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyidi"
version = "0.30.2"
authors = [{name = "Klemen Zaletelj, Domen Gorjup, Janko Slavič et al.", email = "[email protected]"}]
maintainers = [{name = "Klemen Zaletelj, Domen Gorjup, Janko Slavič et al.", email = "[email protected]"}]
license = "MIT"
description = "Python Image Displacement Identification."
readme = "README.md"
keywords = ['computer vision', 'dic', 'gradient-based', 'displacement identification']
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.0.0",
"numpy>=1.15.4",
"scipy>=1.0.0",
"pyMRAW>=0.30",
"psutil",
"tqdm",
"mantichora==0.9.7",
"atpbar",
"numba",
"napari[all]",
"magicgui",
"imageio[pyav]",
"opencv-python",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = [
"sphinx",
"twine",
"build",
"pytest",
"sphinx-book-theme",
"sphinx-copybutton",
"nbsphinx",
"nbsphinx_link",
]
[project.urls]
homepage = "https://github.com/ladisk/pyidi"
documentation = "https://pyidi.readthedocs.io/en/latest/"
source = "https://github.com/ladisk/pyidi"
[tool.hatch.build.targets.sdist]
include = [
"pyidi/*"
]