-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
41 lines (38 loc) · 951 Bytes
/
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
[build-system]
requires = [
"setuptools>=64",
"wheel",
"setuptools_scm[toml]>=3.4",
"cython",
"numpy==1.19; python_version == '3.8'",
"numpy<2.1; python_version > '3.8'",
]
build-backend = 'setuptools.build_meta'
[tool.setuptools_scm]
write_to = 'lightweaver/version.py'
[project]
name = "lightweaver"
dynamic = ["version"]
requires-python = ">=3.8"
authors = [
{name = "Chris Osborne", email = "lw@contextuallight.com"}
]
maintainers = [
{name = "Chris Osborne", email = "lw@contextuallight.com"}
]
description = "Non-LTE Radiative Transfer Framework in Python"
readme = "README.md"
license = { text = "MIT License" }
dependencies = [
"numpy>=1.19; python_version == '3.8'",
"numpy>=2.0,<2.1; python_version > '3.8'",
"numba~=0.56; python_version == '3.8'",
"numba~=0.60; python_version > '3.8'",
"matplotlib",
"scipy",
"parse",
"specutils",
"tqdm",
"weno4",
"pyyaml",
]