forked from neutrinoceros/yt_idefix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
118 lines (105 loc) · 2.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[build-system]
requires = [
"setuptools>=61.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "yt_idefix"
version = "1.1.0"
description = "An extension module for yt, adding a frontend for Idefix"
authors = [
{ name = "C.M.T. Robert" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: AIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed",
]
keywords = [
"astronomy astrophysics visualization amr adaptivemeshrefinement",
]
requires-python = ">=3.8"
dependencies = [
"inifix>=4.1.0",
"numpy>=1.17.3",
"yt>=4.1.0",
]
[project.optional-dependencies]
HDF5 = ["h5py>=3.1.0"]
[project.entry-points."yt.frontends"]
# these entry points require yt 4.2 (unreleased at the time of writing)
# they are included early for testing purposes
IdefixDmpkDataset = "yt_idefix.api:IdefixDmpDataset"
IdefixVtkDataset = "yt_idefix.api:IdefixVtkDataset"
PlutoVtkDataset = "yt_idefix.api:PlutoVtkDataset"
PlutoXdmfDataset = "yt_idefix.api:PlutoXdmfDataset"
[project.license]
text = "GPL-3.0"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://yt-project.org/"
Documentation = "https://yt-project.org/docs/dev/"
Source = "https://github.com/neutrinoceros/yt_idefix"
Tracker = "https://github.com/neutrinoceros/yt_idefix/issues"
[tool.setuptools]
license-files = [
"LICENSE",
]
include-package-data = false
[tool.setuptools.package-data]
yt_idefix = [
"py.typed",
]
[tool.setuptools.packages.find]
namespaces = false
[tool.ruff]
exclude = [
"*/api.py",
"*/__init__.py",
]
select = [
"E",
"F",
"W",
"B", # flake8-bugbear
"G", # flake8-logging-format
"YTT", # flake8-2020
"UP", # pyupgrade
"I", # isort
]
ignore = [
"E501", # line too long
]
[tool.ruff.isort]
combine-as-imports = true
known-third-party = [
"numpy",
"matplotlib",
"unyt",
"yaml",
"pytest",
]
known-first-party = ["yt"]
[tool.mypy]
python_version = 3.8
show_error_codes = true
warn_unused_configs = true
warn_unreachable = true
show_error_context = true
[tool.pytest.ini_options]
filterwarnings = [
"error",
]