-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.08 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
41
42
43
44
45
46
47
48
[project]
name = "jasmine-astro"
dynamic = ["version"]
description = "JASMINE: Joint Analysis of Simulations for Microlensing INterest Events'"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Stela IS", email = "stela.ishitanisilva@nasa.gov" },
{ name = "Stela IS"},
{ name = "Jon H" },
{ name = "CR" },
{ name = "JASMINE authors" },
]
requires-python = ">=3.10"
dependencies = [
"pandas>=2.1.4",
"jupyter>=1.0.0",
"notebook>=7.1.3",
"ipykernel>=6.29.4",
"matplotlib>=3.8.4",
"astropy>=6.1.0",
"jplephem>=2.22",
"bokeh==3.4.1",
"VBMicrolensing>=4.1.0",
"moana-astro>=0.3.0",
"RTModel>=2.4.0",
"joblib>=1.4.2",
"pyarrow>=23.0.1"
]
[project.urls]
Homepage = "https://github.com/stelais/jasmine"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/jasmine/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/jasmine"]
[[tool.hatch.envs.all.matrix]]
python = ["3.10", "3.11", "3.12", "3.13"]
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"