-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.14 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Fargonaut"
version = "0.1.4"
authors = [
{ name="Dan Cummins", email="[email protected]" },
]
description = "A FARGO3D output post-processing and visualisation toolkit"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
]
keywords = ["astronomy", "astrophysics", "fargo3d", "visualisation"]
dependencies = [
"matplotlib",
"numpy",
]
[project.urls]
Homepage = "https://github.com/dc2917/Fargonaut"
Documentation = "https://dc2917.github.io/Fargonaut/index.html"
[project.optional-dependencies]
mpl_gtk = [
"pycairo",
"PyGObject"
]
mpl_qt = [
"pycairo",
"PyQt6"
]
dev = [
"pip-tools",
"pre-commit",
"ruff",
"sphinx",
"sphinx-rtd-theme"
]
[tool.ruff]
target-version = "py313"
lint.select = [
"D", # pydocstyle
"E", # pycodestyle
"F", # Pyflakes
"I", # isort
"UP", # pyupgrade
"RUF", # ruff
]
lint.pydocstyle.convention = "google"