forked from SkynetRTN/skylib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 971 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 971 Bytes
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
[project]
name = "skylib"
dynamic = ["version"]
description = "A Python library for analyzing and processing astronomical image data"
authors = [
{name = "Vladimir Kouprianov", email = "vkoupr@unc.edu"},
]
dependencies = [
"astroscrappy>=1.2.0",
"astropy ~= 6.1.7",
"astroquery ~= 0.4.9.post1",
"jplephem ~= 2.22",
"matplotlib ~= 3.10.0",
"numba ~= 0.61.0",
"numpy ~= 2.1.3",
"opencv-contrib-python-headless ~= 4.12.0",
"photutils >= 2.0.0",
"pillow ~= 11.1.0",
"scipy ~= 1.15.2",
"sep ~= 1.4.1",
"sgp4 ~= 2.24",
"skyfield ~= 1.50",
"tbb == 2021.10.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
[project.scripts]
fits2wav = "skylib.scripts.fits2wav:main"
[build-system]
requires = [
"meson-python>=0.17.1",
"numpy==2.1.3",
]
build-backend = "mesonpy"
[tool.pdm]
distribution = true
[[tool.pdm.autoexport]]
filename = "requirements.txt"
without-hashes = true