-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 881 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 881 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
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "moana-astro"
dynamic = ["version"]
description = "MOAna: Microlensing Observations ANAlysis tools"
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Clément Ranc" },
{ email = "ranc@iap.fr" },
{ name = "Stela Ishitani Silva" },
{ name = "Greg Olmschenk" },
{ name = "MOAna authors" },
]
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.8.4",
"pandas>=2.1.4",
"scipy>=1.14.1",
]
[project.urls]
Homepage = "https://github.com/clementranc/moana"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/moana/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/moana"]
[tool.hatch.envs.all]
dependencies = ["pytest"]
[[tool.hatch.envs.all.matrix]]
python = ["3.10", "3.11", "3.12"]
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"