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
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sirilpy"
version = "1.0.3"
authors = [
{ name = "Team free-astro" },
]
description = "Python interface for Siril astronomical image processing"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Copyright :: (c) Team free-astro 2024",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
license = { text = "GPL-3.0-or-later" }
dependencies = [
"numpy>=1.20.0",
"packaging>=21.0",
"requests>=2.25.0",
'pywin32>=300;platform_system=="Windows"'
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["sirilpy*"]
[project.urls]
"Homepage" = "https://siril.org"
"Bug Tracker" = "https://gitlab.com/free-astro/siril/-/issues"
|