-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (79 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
89 lines (79 loc) · 2.14 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "pjpipe"
version = "1.3.0"
description = "JWST Pipeline Wrapper for Nearby Galaxies"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [
{name = "Thomas G. Williams", email = "thomas.williams@physics.ox.ac.uk"},
]
maintainers = [
{name = "Thomas G. Williams", email = "thomas.williams@physics.ox.ac.uk"},
]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# License
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"astropy == 7.2.0",
"astropy-healpix == 1.1.3",
"astroquery == 0.4.11",
"cmocean == 4.0.3",
"crds == 13.1.7",
"gwcs == 0.26.0",
"image-registration == 0.2.9",
"jwst == 1.20.2",
"lmfit == 1.3.4",
"matplotlib == 3.10.8",
"numpy == 2.2.6",
"opencv-python-headless == 4.13.0.92",
"photutils == 2.3.0",
"pyerfa == 2.0.1.5",
"pypdf == 6.9.2",
"pysiaf == 0.25.0",
"pytest == 9.0.2",
"reproject == 0.19.0",
"requests == 2.32.5",
"scikit-image == 0.26.0",
"scipy == 1.17.1",
"shapely == 2.1.2",
"spherical-geometry == 1.3.5",
"setuptools == 82.0.1",
"stdatamodels == 4.1.0",
"stsci.imagestats == 1.8.4",
"stsci.stimage == 0.3.0",
"stpsf == 2.2.0",
"stwcs == 1.7.7",
"synphot == 1.7.0",
# "spacepylot@git+https://github.com/ejwatkins-astro/spacepylot.git",
"threadpoolctl == 3.6.0",
"tomli == 2.4.1",
"tqdm == 4.67.3",
"tweakwcs == 0.8.12",
]
[project.optional-dependencies]
docs = [
"sphinx-automodapi == 0.22.0",
"sphinx-rtd-theme == 3.1.0",
]
[project.urls]
"Homepage" = "http://phangs.org"
"Bug Reports" = "https://github.com/phangsTeam/pjpipe/issues"
"Source" = "https://github.com/phangsTeam/pjpipe"
[tool.setuptools.packages.find]
exclude = ["LEGACY/*"]
[build-system]
requires = [
"setuptools == 82.0.1",
"wheel == 0.46.3",
"setuptools_scm == 9.2.2",
]
build-backend = "setuptools.build_meta"