-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
91 lines (84 loc) · 2.21 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"oldest-supported-numpy",
"pchanial-legacy-install-hooks>=1.5",
"setuptools==64.0.3",
"setuptools_scm[toml]>=6.2",
"wheel",
]
[project]
name = "pysimulators"
authors = [
{name = "Pierre Chanial", email = "[email protected]"},
]
maintainers = [
{name = "Pierre Chanial", email = "[email protected]"},
]
description = "Tools to build an instrument model."
readme = "README.md"
keywords = [
"scientific computing",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Fortran",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8, <3.11"
license = {file = "LICENSE"}
dependencies = [
"pyoperators[fft]>=0.12.5",
"astropy>=0.3.2",
"numexpr",
"numpy>=1.17",
"scipy>=0.9",
]
dynamic = ["version"]
[project.optional-dependencies]
healpix = ["healpy"]
dev = [
"healpy",
"pyfftw",
"pytest",
"pytest-cov",
"pytest-mock",
"pchanial-legacy-install-hooks",
"setuptools_scm",
]
[project.urls]
homepage = "https://pchanial.github.io/pysimulators"
repository = "https://github.com/pchanial/pysimulators"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"except ImportError:",
"raise NotImplementedError",
"if typing.TYPE_CHECKING:",
]
show_missing = true
skip_covered = true
[tool.isort]
known_first_party = ["pyoperators", "pysimulators"]
[tool.pytest.ini_options]
addopts = "-ra --cov=pysimulators"
testpaths = [
"tests",
]
markers = [
"mpi: mark tests to be run using mpirun.",
]
[tool.setuptools_scm]
version_scheme = "post-release"
fallback_version = "0.0.0"