-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 2.44 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (74 loc) · 2.44 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
[build-system]
requires = ["setuptools>=79.0", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "autogalaxy"
dynamic = ["version"]
description="Open-Source Multi Wavelength Galaxy Structure & Morphology"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [
{ name = "James Nightingale", email = "James.Nightingale@newcastle.ac.uk" },
{ name = "Richard Hayes", email = "richard@rghsoftware.co.uk" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
keywords = ["cli"]
dependencies = [
# Floors, not pins (PyAutoLens#687) — bump to the first release with JAX
# in the family's base dependencies once it exists (PyAutoLens#702), so
# backtracking cannot pair this autogalaxy with a jax-optional chain.
"autofit>=2026.8.22.1",
"autoarray>=2026.8.22.1",
"astropy>=5.0",
"nautilus-sampler==1.0.5",
# Marker-gated like the jax deps in autonerves (jax_zero_contour depends
# on jax, which has no wheels on Intel macOS). PyAutoLens#702.
'jax_zero_contour>=2.0.0,<3.0.0; sys_platform != "darwin" or platform_machine == "arm64"'
]
[project.urls]
Homepage = "https://github.com/PyAutoLabs/PyAutoGalaxy"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["docs", "test_autogalaxy", "test_autogalaxy*"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
[project.optional-dependencies]
# JAX moved into the base dependencies (PyAutoLens#702). Kept as a declared
# no-op so `pip install autogalaxy[jax]` keeps resolving (PyAutoLens#687).
jax = []
optional = [
"autogalaxy[jax]",
"numba",
"zeus-mcmc==2.5.4",
"getdist==1.4"
]
docs=[
"sphinx",
"furo",
"myst-parser",
"sphinx_copybutton",
"sphinx_design",
"sphinx_inline_tabs",
"sphinx_autodoc_typehints"
]
test = ["pytest", "colossus==1.3.1"]
dev = ["pytest", "black", "colossus==1.3.1"]
[tool.setuptools.package-data]
"autogalaxy.config" = ["*"]
[tool.pytest.ini_options]
testpaths = ["test_autogalaxy"]
filterwarnings = [
"ignore:cuda_plugin_extension:UserWarning",
"ignore::DeprecationWarning:jax",
]