-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 1.6 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
[project]
name = "mcfine"
version = "0.4"
description = "Monte-Carlo, Multi-Component ISM Fitting"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [
{name = "Thomas G. Williams", email = "thomas.williams-4@manchester.ac.uk"},
{name = "Elizabeth J. Watkins", email = "elizabeth.watkins@manchester.ac.uk"},
]
maintainers = [
{name = "Thomas G. Williams", email = "thomas.williams-4@manchester.ac.uk"},
]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# 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",
"corner == 2.2.3",
"emcee == 3.1.6",
"lmfit == 1.3.4",
"matplotlib == 3.10.8",
"numdifftools == 0.9.42",
"numpy == 2.4.4",
"scipy == 1.17.1",
"spectral_cube == 0.6.7",
"specutils == 2.3.0",
"threadpoolctl == 3.6.0",
"tqdm == 4.67.3",
"xarray == 2026.2.0",
]
# Because readthedocs fails on ndradexhyperfine, set up optionals here
[project.optional-dependencies]
rt = [
"ndradex == 0.3.1",
]
docs = [
"sphinx-automodapi",
"sphinx-rtd-theme",
]
[project.urls]
"Homepage" = "https://mcfine.readthedocs.io"
"Bug Reports" = "https://github.com/thomaswilliamsastro/issues"
"Source" = "https://github.com/thomaswilliamsastro/mcfine"
[build-system]
requires = ["setuptools>=43.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"