-
Notifications
You must be signed in to change notification settings - Fork 75
/
pyproject.toml
40 lines (35 loc) · 1.24 KB
/
pyproject.toml
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
[project]
name = "astro-prospector"
description = "Stellar Population Inference from Spectra and SEDs"
authors = [
{ name="Ben Johnson", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT License" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Astronomy"
]
dynamic = ["version"]
dependencies = ["numpy", "h5py"]
[project.optional-dependencies]
test = ["pytest", "pytest-xdist"]
[tool.setuptools]
packages = ["prospect",
"prospect.models", "prospect.sources", "prospect.observation",
"prospect.likelihood", "prospect.fitting",
"prospect.io", "prospect.plotting", "prospect.utils"]
[project.urls]
"Homepage" = "https://prospect.readthedocs.io/en/latest/"
"Source" = "https://github.com/bd-j/prospector"
"Bug Tracker" = "https://github.com/bd-j/prospector/issues"
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "prospect/_version.py"