-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (44 loc) · 1.88 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages.find]
where = ["."]
include = ["nornir_imageregistration*"]
[project]
name = "nornir_imageregistration"
version = "1.4.1"
authors = [
{ name="James Anderson", email="James.R.Anderson@utah.edu" },
]
description = "Contains the core image registration algorithms for aligning 2d images into larger mosaics and 3D volumes"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = [
"numpy>=1.9.1",
"scipy>=0.13.2",
"matplotlib>=1.3.0",
"Pillow",
"six",
"hypothesis",
"nornir_pools @ git+https://github.com/jamesra/nornir-pools#egg=nornir_pools-1.4.1",
"nornir_shared @ git+https://github.com/jamesra/nornir-shared#egg=nornir_shared-1.4.1",
]
classifiers = [
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[project.scripts]
nornir-addtransforms = "nornir_imageregistration.scripts.nornir_addtransforms:Execute"
nornir-assemble-tiles = "nornir_imageregistration.scripts.nornir_assemble_tiles:Execute"
nornir-assemble = "nornir_imageregistration.scripts.nornir_assemble:Execute"
nornir-rotate-transalate = "nornir_imageregistration.scripts.nornir_rotate_translate:Execute"
nornir-slice-to-mosaic = "nornir_imageregistration.scripts.nornir_slicetomosaic:Execute"
nornir-translatemosaic = "nornir_imageregistration.scripts.nornir_translatemosaic:Execute"
nornir-scaletransform = "nornir_imageregistration.scripts.nornir_scaletransform:Execute"
nornir-stos-grid-refinement = "nornir_imageregistration.scripts.nornir_stos_grid_refinement:Execute"
nornir-show-mosaic-layout = "nornir_imageregistration.scripts.nornir_show_mosaic_layout:Execute"
[project.urls]
Homepage = "https://github.com/jamesra/nornir-imageregistration"
Issues = "https://github.com/jamesra/nornir-imageregistration/issues"