-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 820 Bytes
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
[project]
name = "inso"
version = "1.2.0"
description = "A module to compute insolation based on eccentricity, obliquity, and climatic precession parameters from various astronomical solutions (Berger 1978, Laskar 2004, ...)."
authors = [{ name="Didier Paillard", email="Didier.Paillard@lsce.ipsl.fr" }]
readme = "README.md"
license = "CECILL-2.1"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.26.4",
"scipy>=1.14.0",
"matplotlib>=3.8.4"
]
[project.urls]
Homepage = "https://github.com/PaleoIPSL/Insolation"
Repository = "https://github.com/PaleoIPSL/Insolation"
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["inso"]
include-package-data = true
[tool.setuptools.package-data]
inso = ["astrofiles/**/*"]