-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 805 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (26 loc) · 805 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
[build-system]
build-backend="hatchling.build"
requires=["hatchling"]
[project]
dependencies=[
"astropy>=7.2.0",
"fastapi[standard]>=0.115.0",
"pydantic>=2.12.5",
"uvicorn>=0.34.0",
]
description="Solar eclipse calculations using NASA Besselian elements"
name="eclipse"
readme="README.md"
requires-python=">=3.12"
version="0.1.0"
[project.optional-dependencies]
dev=["astronomy-engine>=2.1.19", "hypothesis>=6.150.1", "pytest>=9.0.2"]
[project.scripts]
eclipse="eclipse.cli:main"
eclipse-web="eclipse.web:run"
[tool.pytest.ini_options]
pythonpath="."
[tool.hatch.build.targets.wheel]
packages=["eclipse"]
[tool.hatch.build.targets.wheel.force-include]
"eclipse/data"="eclipse/data"