-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
68 lines (59 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools >= 60", "setuptools_scm[toml] >= 8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "resample"
requires-python = ">=3.8"
dependencies = ["numpy >= 1.21", "scipy >= 1.10"]
authors = [
{ name = "Daniel Saxton", email = "dsaxton@pm.me" },
{ name = "Hans Dembinski", email = "hans.dembinski@gmail.com" },
]
readme = "README.rst"
description = "Resampling-based inference in Python"
license = { text = "BSD-3-Clause" }
classifiers = [
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
dynamic = ["version"]
[project.urls]
repository = "http://github.com/resample-project/resample"
documentation = "https://resample.readthedocs.io/en/stable/"
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "coverage[toml]"]
doc = ["ipython", "nbsphinx", "sphinx_rtd_theme"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
[tool.ruff.lint]
extend-select = ["D", "I"]
ignore = ["D212", "D211", "D203"]
[tool.ruff.lint.per-file-ignores]
"test_*.py" = ["D"]
[tool.mypy]
strict = true
no_implicit_optional = false
allow_redefinition = true
ignore_missing_imports = true
files = "src/resample/*.py"
[tool.pytest.ini_options]
addopts = "--doctest-modules --strict-config --strict-markers -q -ra --ff"
testpaths = ["src/resample", "tests"]
log_cli_level = "INFO"
xfail_strict = true
filterwarnings = ["error::DeprecationWarning", "error::FutureWarning"]