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
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "astroalign"
authors = [{ name = "Martin Beroiz", email = "martinberoiz@gmail.com" }]
description = "Astrometric Alignment of Images"
maintainers = [{ name = "Martin Beroiz", email = "martinberoiz@gmail.com" }]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = ["numpy", "scipy", "scikit-image", "sep>=1.4.0"]
license = { file = "LICENSE.txt" }
keywords = [
"astronomy",
"registration",
"alignment",
"asterism-matching",
"stellar-astronomical-images"
]
[project.urls]
homepage = "https://astroalign.quatrope.org"
documentation = "https://astroalign.readthedocs.io/"
source = "https://github.com/quatrope/astroalign"
[tool.setuptools]
py-modules = ["astroalign"]
[tool.setuptools.dynamic]
version = {attr = "astroalign.__version__"}
|