forked from OPTICAM-instrument/phoptic
-
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) · 1021 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 1021 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "phoptic"
version = "0.7.0"
description = "A Python package for reducing astronomical images."
readme = "README.md"
authors = [
{name = "Zackery A. Irving", email = "zackery.irving@icloud.com"},
{name = "Noel Castro Segura", email = "noel.castro.segura@gmail.com"},
]
requires-python = ">=3.14.0"
dependencies = [
"astroalign >= 2.6.2",
"astropy >= 7.2.0",
"ccdproc >= 2.5.1",
"matplotlib >= 3.10.8",
"numba >= 0.63.1",
"numpy == 2.3.5",
"pandas >= 3.0.0",
"pillow >= 12.1.1",
"photutils >= 2.3.0",
"scikit-image >= 0.26.0",
"scipy >= 1.17.0",
"stingray >= 2.3.2",
"tqdm >= 4.67.1",
]
[project.optional-dependencies]
docs = [
"jupyter >=1.1.1",
"nbconvert == 7.16.6",
"nbsphinx >= 0.9",
"pdf2image == 1.17.0",
"sphinx >= 8.1",
"sphinx-autoapi >= 3.4",
"sphinx-rtd-theme >= 3.0",
]
[tool.setuptools.packages.find]
where =["."]