forked from BradenN6/Merlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 1.01 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "merlin-spectra"
version = "0.0.4"
authors = [
{ name="Braden Nowicki", email="bnowicki@terpmail.umd.edu" },
]
description = "Interface with Cloudy Photoionization Software data and RAMSES-RT Simulation data to create galaxy images and spectra in nebular emission lines."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>1.26",
"scipy>1.15",
"matplotlib>3.10",
"astropy>6.1",
"yt>4.4",
"pandas>2.2",
]
keywords = ["spectra", "astrophysics", "JWST"]
[project.urls]
Homepage = "https://github.com/BradenN6/Merlin"
[tool.hatch.build]
include = ["README.md", "LICENSE"]
[tool.hatch.build.targets.wheel]
packages = ["src/merlin_spectra"]
[tool.hatch.build.targets.sdist]
include = ["src/merlin_spectra"]