-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.42 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
54
55
56
57
58
59
#:schema https://json.schemastore.org/pyproject.json
[project]
authors = [{ name = "Bryan Weber", email = "[email protected]" }]
dependencies = [
"astropy==6.1.1",
"bokeh==3.4.2",
"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>=0.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",
]
description = "A book for Orbital Mechanics"
license = { text = "CC-BY-SA-4.0" }
name = "orbital-mechanics-notes"
requires-python = ">=3.10,<3.13"
version = "0.0.0"
[tool.uv]
python-preference = "only-system"
[dependency-groups]
dev = ["doit>=0.36.0", "pyyaml>=6.0.1", "requests>=2.32.3", "ruff>=0.5.0"]
lab = ["jupyterlab>=4.1.4", "jupytext>=1.16.6"]
[tool.uv.sources]
# 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 = { workspace = true }
[tool.uv.workspace]
members = ["vendor/*"]
[tool.ruff]
extend-exclude = ["vendor"]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
ignore = ["E402"]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"NPY", # NumPy rules
"RUF", # Ruff rules
"UP", # pyupgrade
"W", # pycodestyle
]