-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
53 lines (48 loc) · 1.34 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
#:schema https://json.schemastore.org/pyproject.json
[project]
dependencies = [
"astropy>=6.1.1",
"docutils>=0.20.1",
"ipympl>=0.9.4",
"jupyter-book>=1.0.2",
"matplotlib>=3.9.0",
"myst-nb-bokeh>=2024.1.0",
"myst-nb>=1.1.1",
"numpy>=1.26.4",
"pint>=1.24.1",
"plotly>=5.22.0",
"poliastro>=0.18.dev0",
"scipy>=1.14.0",
"skyfield>=1.49",
"sphinx-design>=0.6.0",
"sympy>=1.12.1",
"wheel>=0.43.0",
]
requires-python = ">=3.10,<3.13"
name = "orbital-mechanics-notes"
authors = [{ name = "Bryan Weber", email = "[email protected]" }]
license = { text = "CC-BY-SA-4.0" }
description = "A book for Orbital Mechanics"
version = "0.0.0"
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
dev = ["doit>=0.36.0", "pyyaml>=6.0.1", "ruff>=0.5.0", "requests>=2.32.3"]
[tool.pdm.resolution.overrides]
# Unfortunately, poliastro is no longer maintained. I updated some dependencies on my
# fork to be able to upgrade some other things like astropy. Nothing seems to be broken
# but I'll need a replacement here at some point.
"poliastro" = "https://github.com/bryanwweber/poliastro/archive/main.zip"
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"W", # pycodestyle
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"NPY", # NumPy rules
"RUF", # Ruff rules
]
ignore = ["E402"]